Skip to main content

All Questions

Tagged with or
Filter by
Sorted by
Tagged with
0 votes
1 answer
43 views

I'm looking to use yq to replace a yaml file values while still retaining the old value. Essentially putting base/1.0.0/ after base.routes.paths ~/ and what comes after. The added value will be the ...
Ponsakorn30214's user avatar
-2 votes
0 answers
42 views

I'm using VS Code to work with Kubernetes and Helm YAML files. I have the Red Hat plugin installed. Everything was fine until today. I always had simple files, but today I opened a file with if/else/...
NKK's user avatar
  • 9
Advice
0 votes
1 replies
28 views

So how do I convert a TRX file into html in azure test pipeline. We have a selection of pipelines which run tests on a nightly basis. The tests are designed in Visual Studio with C#, Playwright, ...
Kev's user avatar
  • 456
0 votes
0 answers
36 views

I created a JS client-extension for Liferay 7.4 (U60). Everything works fine on my local environment, but after deploying to our Dev environment through a Jenkins pipeline, I’m getting 404 Not Found ...
Rithik Nirwan's user avatar
0 votes
0 answers
38 views

I'm setting up an Azure pipeline for a React Native project, but I'm running into an error during the Pod update step. Does anyone know what changes I might need to make in the Podfile, the YAML ...
error404's user avatar
-2 votes
0 answers
74 views

I would need how to create the yaml to deploy the stack making sure it has alll these libraries and that it uses these ports Libraries: 1.1- openxlsx 1.2- xml2 1.3- rdflib 1.4- jsonld 1.5- jsonlite 1....
Rodrigo Gómez López's user avatar
1 vote
1 answer
74 views

I'm putting together an academic website with a publications section. I've written a script that will turn a bibtex file into article-by-article quarto and bibtex files that then use a custom template....
jebyrnes's user avatar
  • 9,386
0 votes
1 answer
88 views

I'm using ROS2 for a project. I'm stuck in interpreting the following parameter: my_node: category_sector_mapping: Plastic: 0 Paper: 1 Glass: 2 Aluminium: 2 Organic: 2 ...
Vincenzo Di Napoli's user avatar
0 votes
1 answer
72 views

I want to execute different dynamic templates according to a matrix strategy job The pipeline code below starts 2 jobs as expected, but I cannot call template 1 from Job1 and template 2 from Job2 ...
stavn's user avatar
  • 91
0 votes
1 answer
124 views

I got this shortened yaml configuration file: apiconfiguration: apiList: - queryParameters: - something This is my Java class: @Getter @Setter public class ApiConfig { ...
J. Doe's user avatar
  • 13.5k
1 vote
1 answer
58 views

I'm trying to cache all the Nuget packages for my .NET Solution in the first stage of my job, and then restore that cache in subsequent stages. I have had a lot of trouble finding reliable info on ...
MRichards's user avatar
  • 145
-1 votes
1 answer
50 views

I'm doing Infrastructure as Code for a project and it involves setting up the Azure infrastructure via Github workflow. What i do in my composite is: Create a resource group Build bicep files Run &...
Carius's user avatar
  • 1
2 votes
1 answer
77 views

I have my logback-spring.xml as follows: <?xml version="1.0" encoding="UTF-8"?> <configuration> <springProperty scope="context" name="...
Alfredo Morales's user avatar
-1 votes
1 answer
48 views

I'm currently working with Apache Airflow and trying to configure retries for my DAG tasks using the retry_delay (or retry_delay_sec) parameter in a YAML-based DAG definition. However, I'm running ...
Lucas Lino's user avatar
0 votes
0 answers
45 views

I have a couple of micro services built in Spring Boot, and I'm using Spring Clound Config Server, in my application.yml, the common for all micro services, I have this variables: mem-config: tipo-...
Alfredo Morales's user avatar
1 vote
1 answer
104 views

I´ve created a schema in DAB with this code in my yml file. resources: schemas: my_schema: name: my_schema_name catalog_name: my_catalog The schema is created ...
Siggerud's user avatar
0 votes
0 answers
38 views

I attempted to generate an IPA build via YAML in Azure DevOps with limited success. I have the generated .p12 cert and provisioning profile done - provisioning profile is ad-hoc Below is the error I ...
Chichebe's user avatar
  • 598
1 vote
1 answer
103 views

I have a simple yaml pipeline that calls a template analyze-and-deploy.yml. I concatenate ${{ parameters.Environment }}_USERNAME to create a username parameter dynamically and pass it when calling ...
DevOps-AS's user avatar
0 votes
1 answer
91 views

I’m creating a simple HTTP GET event in the Godspeed framework. My goal is to accept a query parameter called name and return a response. However, when I define the event YAML with type: string ...
Manish Kumar's user avatar
0 votes
0 answers
88 views

When I convert my JSON file to YAML, i want any unicode chars to be part of the content and not escaped with backslash and quotes. Example: This is my file.json What can I do in order to make YQ not ...
Esben von Buchwald's user avatar
1 vote
1 answer
86 views

I have a workflow where I download a file, do some stuff to it, upload it, and then download it again to verify that the changes took place. I want my download logic to be in a reusable YAML file that ...
The Lemon's user avatar
  • 1,467
0 votes
0 answers
48 views

I checked some netizens' errors. Currently I've tried change Triggers>YAML>Insert something to "Default agent pool for YAML" But seems "Unable to load the pipeline's stages" ...
JasonShih's user avatar
2 votes
0 answers
69 views

I'm using the Micronaut framework, and using ConfigurationProperties to load application config into an injectable bean. This has worked well so far, but I'm now stuck on loading nested objects into a ...
Kris Harper's user avatar
  • 5,922
0 votes
0 answers
31 views

IntelliJ 2024.3.3 (Ultimate Edition) shows numerous errors for yaml code in a GitHub workflow such as this (excerpt): jobs: setup: runs-on: 'ubuntu-latest' name: Setup env: ...
Gorgsenegger's user avatar
  • 7,928
0 votes
2 answers
73 views

I have the following structure in yaml: root1: foo: prop1: val1 bar: prop1: val2 root2: foo: prop2: val3 bar: prop2: val4 I wish to split the tree in multiple docs along the ...
joel's user avatar
  • 39
2 votes
1 answer
91 views

Let's assume the following YAML file: --- apiVersion: source.toolkit.fluxcd.io/v1beta2 kind: Bucket metadata: name: kratix namespace: flux-system spec: interval: 10s provider: generic ...
Joseph Gagnon's user avatar
0 votes
1 answer
43 views

I am attempting to use Azure Pipelines to deploy multiple copies of the same code base with variations in the configuration for each instance. Each one is to be deployed to a separate domain ...
Jon Sowers's user avatar
0 votes
0 answers
30 views

I want to use the class defined in yaml file to get a method associated with it. Intuitively, it's something like - !apply: !ref <class.method> But since input to apply is a callable string, ...
Mins's user avatar
  • 109
1 vote
1 answer
101 views

I have a class APIProperties that is being configured by a yaml file via Spring boot's @ConfigurationProperties decorator: ex: @Data @ConfigurationProperties(prefix = "api") public class ...
Walter Carlson's user avatar
0 votes
0 answers
55 views

I am having difficulty in achieving a requirement. I need to determine the Agent pool based on Build.Reason. If the reason is PullRequest, I need to assign the value of agent pool using value of a ...
CeeGeeYes's user avatar
0 votes
0 answers
59 views

I am trying to dynamically change the background color of a tank in my Home Assistant dashboard based on a manually selected color via an input_select. The input_select is defined in configuration....
Brais Fernandez's user avatar
0 votes
0 answers
94 views

I have a GitLab pipeline in which I need to import a GPG key from a variable and sign with it. Signing fails because the key is not trusted. YAML attached. Some remarks: Masking variables does not ...
user149408's user avatar
  • 6,279
1 vote
2 answers
381 views

I'm new to Airflow and trying to automatically create an admin user when initializing Apache Airflow 3.x using Docker Compose, but it's not being created, and I can't log in. I’ve tried using the ...
fletcherthecomputerwiz's user avatar
1 vote
2 answers
88 views

need to get all the nested keys from a yaml file using mikefarah/yq(installed v4.25.1) tried the below 2 this gives only the parent level keys not the child keys under it yq eval 'keys' "...
Sumanth's user avatar
  • 189
2 votes
1 answer
99 views

I'm using ruamel.yaml to add an entry to a dictionary: import ruamel.yaml yaml = ruamel.yaml.YAML() yaml.preserve_quotes = True yaml.indent(mapping=2, sequence=4, offset=2) raw = """---...
Dick Visser's user avatar
4 votes
1 answer
133 views

In the past, I have had to set the proxyName and proxyPort (along with scheme and secure) so that when Okta Saml SSO assertions are made/validated the correct domain values are used (since my app is ...
B-Wieg's user avatar
  • 293
2 votes
0 answers
201 views

Problem I’m trying to create reusable job cluster configurations in Databricks Asset Bundles (DAB) that can be referenced across multiple jobs defined in separate YAML files. I want to avoid ...
Harshit Gupta's user avatar
1 vote
0 answers
72 views

I've tried to use kotlinx.serialization with the third party Yaml plugin from @charleskorn. In the past I already did something with Python using pyyaml, where I explicitly set a custom yaml_tag for ...
9Lukas5's user avatar
  • 91
0 votes
0 answers
54 views

I am loading a yaml file using readYaml inside a declarative Jenkins pipeline. My file contains values that are of format YYYY-MM-DD, for example 2024-10-23. However, after loading, these values ...
KrzysiekDD's user avatar
0 votes
0 answers
38 views

I have two yml files Common.yml and application.yml Both under same folder I have certain schemas like sortOrder that are defined in common schema And using $ref it is referred in application.yaml ...
JayakumarSivasankar's user avatar
0 votes
0 answers
91 views

When I execute test cases which will result pass test cases azure pipeline successfully run and show results under a min. when I enabled failed test cases azure pipeline keeps on loading- until I ...
Zeeshan ilyas's user avatar
-1 votes
1 answer
65 views

I write a GitLab CI YAML. This: test: script: - echo 'hello: world' Fails with the error: "This GitLab CI configuration is invalid: jobs:test:script config should be a string or a nested ...
obe's user avatar
  • 7,844
-2 votes
1 answer
153 views

I have the following task which takes a list of {config}.yml.j2 files: - name: Copy central application configuration file into config folder ansible.builtin.template: src: "config/{{ item }...
Steve Bosman's user avatar
  • 2,642
0 votes
1 answer
109 views

I have a yaml file looks like part1: name: tom some_field: true part2: name: jerry other_field: true and I would like to change the value of all keys that end with field into false, that is, ...
xis's user avatar
  • 24.9k
2 votes
1 answer
406 views

Here is my example code: from pathlib import Path from pydantic_settings import BaseSettings, SettingsConfigDict class Settings(BaseSettings): model_config = SettingsConfigDict( yaml_file=...
rzlvmp's user avatar
  • 9,864
0 votes
1 answer
77 views

I’m automating small edits to YAML files (and opening PRs), but I need only the lines I intentionally changed to appear in the diff—yet ruamel.yaml still rewrites lines I never touched. For example, ...
Kartoffel's user avatar
0 votes
2 answers
122 views

I'm running an Azure DevOps pipeline using a self-hosted agent. The pipeline is defined in YAML and is triggered from a repository called TestRepo. However, the pipeline fails during the default ...
Pankaj Wagh's user avatar
1 vote
2 answers
51 views

I’m facing an issue with my GitHub Actions CI/CD setup for deploying a web app to Firebase Hosting. I’ve set up three workflows: Pull Request Workflow: Validates code on PR creation. Build Workflow: ...
Tabrez Dal's user avatar
0 votes
0 answers
44 views

I'm trying to deploy an application in AWS using parallel for handling 2 application in one service, if I'm using in custom pipeline, it's working fine, but when I tried with branches like dev/sit, I ...
Mohamed Abdul Kadar's user avatar
0 votes
0 answers
158 views

I have a module failure with a very simple playbook, I always have this error of bas escape I can't send any config with the module I'm trying to send it on 2 Huawei CE6885-48YS8CQ and I'm on Ubuntu ...
BeowolfK's user avatar

1
2 3 4 5
318