Ubuntu – How to modify a nested module of yaml file using bash script
I am trying to change one specific word in yaml file using sed command kind: Pod metadata: name: abc12 spec: containers: - image: ubuntu:latest name: Ubuntu imagePullPolicy: IfNotPresent - image: ngnix: latest name: Nginx imagePullPolicy: IfNotPresent ... Tried using the…