Practice Test - Env Variables $ k get po webapp-color -o yaml >> pod.yaml ## env 값 변경(pink -> green) $ vi pod.yaml apiVersion: v1 kind: Pod metadata: creationTimestamp: "2023-02-19T05:27:47Z" labels: name: webapp-color name: webapp-color namespace: default resourceVersion: "1004" uid: df82c20b-2e0b-405f-87d1-ab206c40ae7a spec: containers: - env: - name: APP_COLOR value: green image: kodekloud/we..