Factory/upgrade-controller-chart/values.yaml
Nicolas Belouin 2a993e342e
All checks were successful
OBS: metal3-chart - charts/x86_64
OBS: rancher-turtles-airgap-resources-chart - charts/x86_64
OBS: sriov-crd-chart - charts/x86_64
OBS: metallb-chart - charts/x86_64
OBS: sriov-network-operator-chart - charts/x86_64
OBS: kube-rbac-proxy - standard/x86_64
OBS: rancher-turtles-chart - charts/x86_64
OBS: kube-rbac-proxy - standard/aarch64
OBS: upgrade-controller-chart - charts/x86_64
OBS: fakeroot - standard/aarch64
OBS: upgrade-controller - standard/aarch64
OBS: kubevirt-dashboard-extension-chart - charts/x86_64
OBS: cri-tools - standard/x86_64
OBS: release-manifest-image - test_manifest_images/aarch64
OBS: metallb - standard/aarch64
OBS: upgrade-controller - standard/x86_64
OBS: kubevirt-chart - charts/x86_64
OBS: metallb - standard/x86_64
OBS: release-manifest-image - test_manifest_images/x86_64
OBS: release-manifest-image - images/aarch64
OBS: release-manifest-image - images/x86_64
OBS: hauler - standard/x86_64
OBS: hauler - standard/aarch64
OBS: baremetal-operator-image - images/aarch64
OBS: akri-agent-image - images/aarch64
OBS: endpoint-copier-operator-image - images/x86_64
OBS: baremetal-operator-image - images/x86_64
OBS: endpoint-copier-operator-image - images/aarch64
OBS: kube-rbac-proxy-image - images/aarch64
OBS: ironic-ipa-downloader-image - images/x86_64
OBS: upgrade-controller-image - images/aarch64
OBS: metallb-controller-image - images/aarch64
OBS: metallb-speaker-image - images/aarch64
OBS: ironic-image - images/x86_64
OBS: upgrade-controller-image - images/x86_64
OBS: metallb-controller-image - images/x86_64
OBS: akri-agent-image - images/x86_64
OBS: metallb-speaker-image - images/x86_64
OBS: edge-image-builder-image - images/aarch64
OBS: edge-image-builder-image - test_manifest_images/x86_64
OBS: edge-image-builder-image - images/x86_64
OBS: edge-image-builder-image - test_manifest_images/aarch64
OBS SCM/CI Workflow Integration started
OBS: akri-chart - charts/x86_64
OBS: akri-dashboard-extension-chart - charts/x86_64
OBS: crudini - standard/x86_64
OBS: cdi-chart - charts/x86_64
OBS: crudini - standard/aarch64
OBS: endpoint-copier-operator-chart - charts/x86_64
OBS: baremetal-operator - standard/x86_64
OBS: baremetal-operator - standard/aarch64
OBS: endpoint-copier-operator - standard/aarch64
OBS: endpoint-copier-operator - standard/x86_64
OBS: cri-tools - standard/aarch64
OBS: fakeroot - standard/x86_64
OBS: edge-image-builder - standard/aarch64
OBS: cosign - standard/aarch64
OBS: cosign - standard/x86_64
OBS: frr-k8s - standard/x86_64
OBS: kube-rbac-proxy-image - images/x86_64
OBS: edge-image-builder - standard/x86_64
OBS: frr-k8s - standard/aarch64
Use manifest_repo var to allow for release manifest in separate repo
Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com>
2024-12-23 11:33:04 +01:00

92 lines
1.8 KiB
YAML

# Default values for upgrade-controller.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: %%IMG_REPO%%/%%IMG_PREFIX%%upgrade-controller
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
env:
releaseManifest:
image: %%MANIFEST_REPO%%/%%IMG_PREFIX%%release-manifest
kubectl:
image: %%IMG_REPO%%/%%IMG_PREFIX%%kubectl
version: 1.30.3
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Automatically mount a ServiceAccount's API credentials?
automount: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
podAnnotations: {}
podLabels: {}
podSecurityContext:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
securityContext:
capabilities:
drop:
- ALL
allowPrivilegeEscalation: false
webhookService:
name: webhook-server
type: ClusterIP
port: 443
targetPort: 9443
resources: {}
livenessProbe:
httpGet:
path: /healthz
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /readyz
port: 8081
initialDelaySeconds: 5
periodSeconds: 10
# Always keep the cert volume first in case others are appended
# or adjust the certificate resources lookup.
volumes:
- name: cert
secret:
secretName: webhook-server-cert
defaultMode: 420
optional: false
volumeMounts:
- name: cert
mountPath: "/tmp/k8s-webhook-server/serving-certs"
readOnly: true
nodeSelector: {}
tolerations: []
affinity: {}
crds:
enabled: true