When clicked on envFrom: [] from the YAML file below, the plugin showed the wrong full path template.spec.name.envFrom.
It skipped the array contains and the index. I would expect template.spec.containers[0].envFrom or template.spec.containers.0.envFrom.
apiVersion: v1
kind: PodTemplate
metadata:
labels:
fooobar.com/admin: namespace
hello.fooobar.com/class: stateless
annotations:
fooobar.com/certificate-file-format: pem
fooobar.com/kustomize-base: base
name: $(fooobar_SERVICE_NAME)
template:
metadata:
annotations:
fooobar.com/certificate-file-format: pem
fooobar.com/kustomize-base: base
labels:
workload.fooobar.com/class: stateless
spec:
automountServiceAccountToken: false
imagePullSecrets: []
initContainers: []
containers:
- name: $(fooobar_SERVICE_NAME)
image: fooobar
env: []
envFrom: []
securityContext:
allowPrivilegeEscalation: false
privileged: false
readOnlyRootFilesystem: true
capabilities:
add: []
drop:
- ALL
volumeMounts: []
restartPolicy: Never
volumes: []
tolerations: []
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: []
preferredDuringSchedulingIgnoredDuringExecution: []
podAffinity:
requiredDuringSchedulingIgnoredDuringExecution: []
preferredDuringSchedulingIgnoredDuringExecution: []
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution: []
preferredDuringSchedulingIgnoredDuringExecution: []
securityContext:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
When clicked on
envFrom: []from the YAML file below, the plugin showed the wrong full pathtemplate.spec.name.envFrom.It skipped the array contains and the index. I would expect
template.spec.containers[0].envFromortemplate.spec.containers.0.envFrom.