Git Product home page Git Product logo

Comments (6)

willzhang avatar willzhang commented on May 28, 2024 1

yq '... comments = "" | .spec.service.type="NodePort"'

it's good way.

from yq.

mikefarah avatar mikefarah commented on May 28, 2024

Weird I don't get that blank line when I try your example locally.

from yq.

mikefarah avatar mikefarah commented on May 28, 2024

Oops yes I do - the new line in the example you had didn't copy over for some reason.

from yq.

mikefarah avatar mikefarah commented on May 28, 2024

Ok looking into it - it seems that the underling yaml parser attaches the newlines to the "# memory" line comment; which itself belongs to the '.spec.requests' node. When a new node is added below, it goes beneath the printed comment which is why you're getting those spaces.

There's not much I can do to control this from a coding perspective, but here are a couple of options to workaround it:

a) put a blank line between 'storage' and the comment:

  storage: 10Gi
  
  # limits:
  #   cpu: 2000m
  #   memory: 2Gi

This will treat the comment block as a footer, so the new service node will appear above it

Or b) Trim the trailing new lines from the file

from yq.

willzhang avatar willzhang commented on May 28, 2024

Thanks,now i must use sed to delete the blank line,but using sed is somewhat ugly.

wget https://raw.githubusercontent.com/pingcap/tidb-operator/1.5.1/examples/basic/tidb-dashboard.yaml
yq -i '.spec.service.type="NodePort"' --inplace tidb-dashboard.yaml
sed -i '/^$/d' tidb-dashboard.yaml

Can yq ignore all lines starting with the # sign? these comment lines have no meaning for the structure of the yaml file.

Eg: let yq to ignore # line then use ----inplace

# cat tidb-dashboard.yaml | grep -v '^ *$\|^ *#'
apiVersion: pingcap.com/v1alpha1
kind: TidbDashboard
metadata:
  name: basic
spec:
  baseImage: pingcap/tidb-dashboard
  version: latest
  clusters:
    - name: basic
  requests:
    storage: 10Gi

from yq.

mikefarah avatar mikefarah commented on May 28, 2024

Yep, you can use yq to remove all the comments:

yq '... comments = "" | .spec.service.type="NodePort"' examples/data1.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.