josephburnett/jd

Patch YAML by id fails to find

josephburnett opened this issue · 1 comments

a.yaml:

apiVersion: apps/v1
kind: Deployment
metadata:
  labels:
    app: nginx
  name: nginx-deployment
spec:
  replicas: 3
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - image: nginx:1.14.2
        name: nginx
        ports:
        - containerPort: 8080

patch:

@ ["spec","template","spec","containers",{"name":"nginx"},"ports",0]
- 8080
+ 8081

error:

Invalid diff. Expected object with id {"name":"nginx"} but found none

Expected clean apply.

Fixed with 3adfe95 which infers set keys from the path.