Last active
March 2, 2023 16:45
-
-
Save ThomasVitale/44a9802731758d6a8207b8a76325ed40 to your computer and use it in GitHub Desktop.
Carvel ytt - Example with empty ConfigMap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@data/values | |
--- | |
config-features: | |
secure-pod-defaults: "enabled" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@ load("@ytt:overlay", "overlay") | |
#@ load("@ytt:data", "data") | |
#@overlay/match by=overlay.subset({"kind":"ConfigMap", "metadata":{"name":"config-features"}}),expects=1 | |
#@overlay/match-child-defaults missing_ok=True | |
--- | |
#@overlay/replace | |
data: #@ data.values["config-features"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@data/values-schema | |
--- | |
config-features: | |
secure-pod-defaults: "disabled" | |
multi-container: "enabled" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: config-features | |
namespace: knative-serving | |
labels: | |
app.kubernetes.io/name: knative-serving | |
app.kubernetes.io/component: controller | |
app.kubernetes.io/version: devel | |
annotations: | |
knative.dev/example-checksum: "d3565159" | |
data: | |
_example: |- | |
################################ | |
# # | |
# EXAMPLE CONFIGURATION # | |
# # | |
################################ | |
# This block is not actually functional configuration, | |
# but serves to illustrate the available configuration | |
# options and document them in a way that is accessible | |
# to users that `kubectl edit` this config map. | |
# | |
# These sample configuration options may be copied out of | |
# this example block and unindented to be in the data block | |
# to actually change the configuration. | |
# Default SecurityContext settings to secure-by-default values | |
# if unset. | |
# | |
# This value will default to "enabled" in a future release, | |
# probably Knative 1.10 | |
secure-pod-defaults: "disabled" | |
# Indicates whether multi container support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#multi-containers | |
multi-container: "enabled" | |
# Indicates whether Kubernetes affinity support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-node-affinity | |
kubernetes.podspec-affinity: "disabled" | |
# Indicates whether Kubernetes topologySpreadConstraints support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-topology-spread-constraints | |
kubernetes.podspec-topologyspreadconstraints: "disabled" | |
# Indicates whether Kubernetes hostAliases support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-host-aliases | |
kubernetes.podspec-hostaliases: "disabled" | |
# Indicates whether Kubernetes nodeSelector support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-node-selector | |
kubernetes.podspec-nodeselector: "disabled" | |
# Indicates whether Kubernetes tolerations support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-toleration | |
kubernetes.podspec-tolerations: "disabled" | |
# Indicates whether Kubernetes FieldRef support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-fieldref | |
kubernetes.podspec-fieldref: "disabled" | |
# Indicates whether Kubernetes RuntimeClassName support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-runtime-class | |
kubernetes.podspec-runtimeclassname: "disabled" | |
# Indicates whether Kubernetes DNSPolicy support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-dnspolicy | |
kubernetes.podspec-dnspolicy: "disabled" | |
# Indicates whether Kubernetes DNSConfig support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-dnsconfig | |
kubernetes.podspec-dnsconfig: "disabled" | |
# This feature allows end-users to set a subset of fields on the Pod's SecurityContext | |
# | |
# When set to "enabled" or "allowed" it allows the following | |
# PodSecurityContext properties: | |
# - FSGroup | |
# - RunAsGroup | |
# - RunAsNonRoot | |
# - SupplementalGroups | |
# - RunAsUser | |
# - SeccompProfile | |
# | |
# This feature flag should be used with caution as the PodSecurityContext | |
# properties may have a side-effect on non-user sidecar containers that come | |
# from Knative or your service mesh | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-security-context | |
kubernetes.podspec-securitycontext: "disabled" | |
# Indicates whether Kubernetes PriorityClassName support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-priority-class-name | |
kubernetes.podspec-priorityclassname: "disabled" | |
# Indicates whether Kubernetes SchedulerName support is enabled | |
# | |
# WARNING: Cannot safely be disabled once enabled. | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-scheduler-name | |
kubernetes.podspec-schedulername: "disabled" | |
# This feature flag allows end-users to add a subset of capabilities on the Pod's SecurityContext. | |
# | |
# When set to "enabled" or "allowed" it allows capabilities to be added to the container. | |
# For a list of possible capabilities, see https://man7.org/linux/man-pages/man7/capabilities.7.html | |
kubernetes.containerspec-addcapabilities: "disabled" | |
# This feature validates PodSpecs from the validating webhook | |
# against the K8s API Server. | |
# | |
# When "enabled", the server will always run the extra validation. | |
# When "allowed", the server will not run the dry-run validation by default. | |
# However, clients may enable the behavior on an individual Service by | |
# attaching the following metadata annotation: "features.knative.dev/podspec-dryrun":"enabled". | |
# See: https://knative.dev/docs/serving/feature-flags/#kubernetes-dry-run | |
kubernetes.podspec-dryrun: "allowed" | |
# Controls whether tag header based routing feature are enabled or not. | |
# 1. Enabled: enabling tag header based routing | |
# 2. Disabled: disabling tag header based routing | |
# See: https://knative.dev/docs/serving/feature-flags/#tag-header-based-routing | |
tag-header-based-routing: "disabled" | |
# Controls whether http2 auto-detection should be enabled or not. | |
# 1. Enabled: http2 connection will be attempted via upgrade. | |
# 2. Disabled: http2 connection will only be attempted when port name is set to "h2c". | |
autodetect-http2: "disabled" | |
# Controls whether volume support for EmptyDir is enabled or not. | |
# 1. Enabled: enabling EmptyDir volume support | |
# 2. Disabled: disabling EmptyDir volume support | |
kubernetes.podspec-volumes-emptydir: "enabled" | |
# Controls whether init containers support is enabled or not. | |
# 1. Enabled: enabling init containers support | |
# 2. Disabled: disabling init containers support | |
kubernetes.podspec-init-containers: "disabled" | |
# Controls whether persistent volume claim support is enabled or not. | |
# 1. Enabled: enabling persistent volume claim support | |
# 2. Disabled: disabling persistent volume claim support | |
kubernetes.podspec-persistent-volume-claim: "disabled" | |
# Controls whether write access for persistent volumes is enabled or not. | |
# 1. Enabled: enabling write access for persistent volumes | |
# 2. Disabled: disabling write access for persistent volumes | |
kubernetes.podspec-persistent-volume-write: "disabled" | |
# Controls if the queue proxy podInfo feature is enabled, allowed or disabled | |
# | |
# This feature should be enabled/allowed when using queue proxy Options (Extensions) | |
# Enabling will mount a podInfo volume to the queue proxy container. | |
# The volume will contains an 'annotations' file (from the pod's annotation field). | |
# The annotations in this file include the Service annotations set by the client creating the service. | |
# If mounted, the annotations can be accessed by queue proxy extensions at /etc/podinfo/annnotations | |
# | |
# 1. "enabled": always mount a podInfo volume | |
# 2. "disabled": never mount a podInfo volume | |
# 3. "allowed": by default, do not mount a podInfo volume | |
# However, a client may mount the podInfo volume on an individual Service by attaching | |
# the following metadata annotation to the Service: "features.knative.dev/queueproxy-podinfo":"enabled". | |
# | |
# NOTE THAT THIS IS AN EXPERIMENTAL / ALPHA FEATURE | |
queueproxy.mount-podinfo: "disabled" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment