Git Product home page Git Product logo

Comments (3)

antonosmond avatar antonosmond commented on May 31, 2024

I'll add a concrete example and details when I get a chance

from yq.

antonosmond avatar antonosmond commented on May 31, 2024

Here's an example. I've removed the majority of the yaml from the files so it's easy to reproduce.
Given the following yaml files:

# one.yaml
spec:
  jobTemplate:
    spec:
# two.yaml
spec:
  template:
    spec:
      containers:
        - name: task-runner
          args:
            - cp -v -r -L /etc/gitlab/.s3cfg $HOME/.s3cfg && while sleep 3600; do :; done # alpine sleep has no infinity

I want to set spec.jobTemplate.spec in one.yaml equal to spec.template from two.yaml.
Using the following command should achieve that:

yq -y ".spec.jobTemplate.spec = $(yq '.spec.template' two.yaml)" one.yaml

But it causes the line to get broken. If you drop the -y flag and inspect the JSON it's fine and valid.
Interestingly, if you set the value one level shallower i.e.:

yq -y ".spec.jobTemplate = $(yq '.spec.template' two.yaml)" one.yaml

instead of

yq -y ".spec.jobTemplate.spec = $(yq '.spec.template' two.yaml)" one.yaml

it works without breaking the line.

from yq.

kislyuk avatar kislyuk commented on May 31, 2024

There is nothing "broken" about the YAML emitted in your test case. As described in the spec, YAML folds whitespace in strings; in other words, unless you escape your whitespace with \ , it will be compressed into a single space, and lines will be wrapped.

As described in the yq help, you can get the behavior that you want by setting the -w/--width option to a large value, for example:

yq -w 99 -y ".spec.jobTemplate.spec = $(yq '.spec.template' two.yaml)" one.yaml

from yq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.