Kubernetes - ConfigMaps
Given this YAML snippet for a ConfigMap with
immutable: true:
apiVersion: v1 kind: ConfigMap metadata: name: example-config immutable: true data: setting: old_valueWhat happens if you try to update
setting to new_value using kubectl apply?