Kubernetes - Advanced Deployment Patterns
Given this ConfigMap YAML snippet for feature flags:
What will be the value of FEATURE_Y_ENABLED when accessed as an environment variable in a pod?
apiVersion: v1 kind: ConfigMap metadata: name: feature-flags data: FEATURE_X_ENABLED: "true" FEATURE_Y_ENABLED: "false"
What will be the value of FEATURE_Y_ENABLED when accessed as an environment variable in a pod?
