outposts: support json patch for Kubernetes (#6319)

This commit is contained in:
ChandonPierre
2023-07-21 20:29:28 -04:00
committed by GitHub
parent a728dad166
commit d435a65cfd
17 changed files with 162 additions and 17 deletions

View File

@ -64,4 +64,18 @@ kubernetes_image_pull_secrets: []
# (Available with 2022.11.0+)
# Applies to: proxy outposts
kubernetes_ingress_class_name: null
# Optionally apply an RFC 6902 compliant patch to the Kubernetes objects. This value expects
# a mapping of a key which can be any of the values from `kubernetes_disabled_components`,
# which configures which component the patches are applied to. For example:
# deployment:
# - op: add
# path: "/spec/template/spec/containers/0/resources"
# value:
# requests:
# cpu: 2000m
# memory: 2000Mi
# limits:
# cpu: 4000m
# memory: 8000Mi
kubernetes_json_patches: null
```