feature/add-vpa-for-monitoring

This commit is contained in:
kklinch0
2025-03-06 16:12:24 +03:00
parent 8267072da2
commit aa084b4635
80 changed files with 6476 additions and 2 deletions

View File

@@ -366,3 +366,10 @@ releases:
namespace: cozy-goldpinger
privileged: true
dependsOn: [monitoring-agents]
- name: vertical-pod-autoscaler
releaseName: vertical-pod-autoscaler
chart: cozy-vertical-pod-autoscaler
namespace: cozy-vertical-pod-autoscaler
privileged: true
dependsOn: [monitoring-agents]

View File

@@ -247,3 +247,10 @@ releases:
namespace: cozy-goldpinger
privileged: true
dependsOn: [monitoring-agents]
- name: vertical-pod-autoscaler
releaseName: vertical-pod-autoscaler
chart: cozy-vertical-pod-autoscaler
namespace: cozy-vertical-pod-autoscaler
privileged: true
dependsOn: [monitoring-agents]

View File

@@ -3,4 +3,4 @@ name: monitoring
description: Monitoring and observability stack
icon: /logos/monitoring.svg
type: application
version: 1.8.1
version: 1.9.0

View File

@@ -0,0 +1,62 @@
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
name: vpa-vminsert
spec:
targetRef:
apiVersion: apps/v1
kind: Deployment
name: vminsert-shortterm
updatePolicy:
updateMode: Auto
resourcePolicy:
containerPolicies:
- containerName: vminsert
minAllowed:
cpu: 250m
memory: 256Mi
maxAllowed:
cpu: 2000m
memory: 4Gi
---
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
name: vpa-vmselect
spec:
targetRef:
apiVersion: apps/v1
kind: StatefulSet
name: vmselect-shortterm
updatePolicy:
updateMode: Auto
resourcePolicy:
containerPolicies:
- containerName: vmselect
minAllowed:
cpu: 250m
memory: 256Mi
maxAllowed:
cpu: 4000m
memory: 8Gi
---
apiVersion: autoscaling.k8s.io/v1
kind: VerticalPodAutoscaler
metadata:
name: vpa-vmstorage
spec:
targetRef:
apiVersion: apps/v1
kind: StatefulSet
name: vmstorage-shortterm
updatePolicy:
updateMode: Auto
resourcePolicy:
containerPolicies:
- containerName: vmstorage
minAllowed:
cpu: 100m
memory: 512Mi
maxAllowed:
cpu: 4000m
memory: 8Gi

View File

@@ -30,7 +30,8 @@ monitoring 1.6.0 cb7b8158
monitoring 1.6.1 3bb97596
monitoring 1.7.0 749110aa
monitoring 1.8.0 80b4c151
monitoring 1.8.1 HEAD
monitoring 1.8.1 06daf341
monitoring 1.9.0 HEAD
seaweedfs 0.1.0 5ca8823
seaweedfs 0.2.0 9e33dc0
seaweedfs 0.2.1 249bf35

View File

@@ -0,0 +1,3 @@
apiVersion: v2
name: cozy-vertical-pod-autoscaler
version: 0.0.0 # Placeholder, the actual version will be automatically set during the build process

View File

@@ -0,0 +1,11 @@
export NAME=victoria-metrics-operator
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
update:
rm -rf charts
# VictoriaMetrics operator
helm repo add cowboysysop https://cowboysysop.github.io/charts/
helm repo update cowboysysop
helm pull cowboysysop/vertical-pod-autoscaler --untar --untardir charts

View File

@@ -0,0 +1,22 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/

View File

@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami/
version: 2.21.0
digest: sha256:e25ca51f064e63a6b2d595f4bb318563de95e5e7ee2534b0457010be6acefc1e
generated: "2025-01-28T22:38:50.721673297Z"

View File

@@ -0,0 +1,23 @@
annotations:
artifacthub.io/signKey: |
fingerprint: 9E57D2479D48B84463EF491F66D280CE667AD6C8
url: https://cowboysysop.github.io/charts/pgp-public-key-2022-02-19.asc
kubeVersion: '>=1.24'
apiVersion: v2
appVersion: 1.3.0
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami/
version: 2.21.0
description: Set of components that automatically adjust the amount of CPU and memory
requested by pods running in the Kubernetes Cluster
home: https://github.com/kubernetes/autoscaler
icon: https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.svg
maintainers:
- email: sebastien.prudhomme@gmail.com
name: sebastien-prudhomme
name: vertical-pod-autoscaler
sources:
- https://github.com/kubernetes/autoscaler
- https://github.com/cowboysysop/charts/tree/master/charts/vertical-pod-autoscaler
version: 10.0.0

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020-present Sébastien Prud'homme
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,458 @@
# Vertical Pod Autoscaler
[Vertical Pod Autoscaler](https://github.com/kubernetes/autoscaler) is a set of components that automatically adjust the amount of CPU and memory requested by pods running in the Kubernetes Cluster.
**DISCLAIMER**: This is an unofficial chart not supported by Vertical Pod Autoscaler authors.
## TL;DR;
```bash
$ helm repo add cowboysysop https://cowboysysop.github.io/charts/
$ helm install my-release cowboysysop/vertical-pod-autoscaler
```
## Introduction
This chart bootstraps a Vertical Pod Autoscaler deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
## Prerequisites
- Kubernetes >= 1.24
- Metrics Server >= 0.2 (you can use the [bitnami/metrics-server](https://artifacthub.io/packages/helm/bitnami/metrics-server) chart)
- Helm >= 3.9
## Installing
Install the chart using:
```bash
$ helm repo add cowboysysop https://cowboysysop.github.io/charts/
$ helm install my-release cowboysysop/vertical-pod-autoscaler
```
These commands deploy Vertical Pod Autoscaler on the Kubernetes cluster in the default configuration and with the release name `my-release`. The deployment configuration can be customized by specifying the customization parameters with the `helm install` command using the `--values` or `--set` arguments. Find more information in the [configuration section](#configuration) of this document.
## Upgrading
Upgrade the chart deployment using:
```bash
$ helm upgrade my-release cowboysysop/vertical-pod-autoscaler
```
The command upgrades the existing `my-release` deployment with the most latest release of the chart.
**TIP**: Use `helm repo update` to update information on available charts in the chart repositories.
### Upgrading to version 10.0.0
The application has been updated to a major release, see the release notes for breaking changes:
- https://github.com/kubernetes/autoscaler/releases/tag/vertical-pod-autoscaler-1.3.0
Information about services are no more injected into pod's environment variable.
### Upgrading to version 9.0.0
The chart is now tested with Kubernetes >= 1.24 and Helm >= 3.9.
Future upgrades may introduce undetected breaking changes if you continue to use older versions.
### Upgrading to version 8.0.0
Some parameters related to port management have been modified:
- Parameter `admissionController.metrics.service.port` has been renamed `admissionController.metrics.service.ports.metrics`.
- Parameter `recommender.metrics.service.port` has been renamed `recommender.metrics.service.ports.metrics`.
- Parameter `updater.metrics.service.port` has been renamed `updater.metrics.service.ports.metrics`.
### Upgrading to version 7.0.0
Some parameters related to image management have been modified:
- Registry prefix in `image.repository` parameters is now configured in `image.registry`.
- Parameter `imagePullSecrets` has been renamed `global.imagePullSecrets`.
### Upgrading to version 6.0.0
The application version is no more compatible with Kubernetes 1.19, 1.20 and 1.21.
### Upgrading to version 5.0.0
The application validates that all fields that specify CPU and memory have supported resolution:
- CPU is a whole number of milli CPUs
- Memory is a whole number of bytes
### Upgrading to version 4.0.0
The application version is no more compatible with Kubernetes 1.16.
Custom resource definitions are now created and upgraded with a pre-install/pre-upgrade job.
### Upgrading to version 3.0.0
The chart is no more compatible with Helm 2.
Refer to the [Helm documentation](https://helm.sh/docs/topics/v2_v3_migration/) for more information.
### Upgrading to version 2.0.0
The port names have been changed to be compatible with Istio service mesh.
## Uninstalling
Uninstall the `my-release` deployment using:
```bash
$ helm uninstall my-release
```
The command deletes the release named `my-release` and frees all the kubernetes resources associated with the release.
**TIP**: Specify the `--purge` argument to the above command to remove the release from the store and make its name free for later use.
Delete the `vpa-webhook-config` mutating webhook configuration automatically created by Vertical Pod Autoscaler admission controller component using:
```bash
$ kubectl delete mutatingwebhookconfiguration vpa-webhook-config
```
Optionally, delete the custom resource definitions created by the chart using:
**WARNING**: It will also try to delete all instances of the custom resource definitions.
```bash
$ kubectl delete crd verticalpodautoscalers.autoscaling.k8s.io
$ kubectl delete crd verticalpodautoscalercheckpoints.autoscaling.k8s.io
```
## Configuration
### Global parameters
| Name | Description | Default |
| ------------------------- | ----------------------------------------------- | ------- |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
### Common parameters
| Name | Description | Default |
| ------------------- | ------------------------------------------------------------------------------------------------------------ | ------- |
| `kubeVersion` | Override Kubernetes version | `""` |
| `nameOverride` | Partially override `vertical-pod-autoscaler.fullname` template with a string (will prepend the release name) | `""` |
| `fullnameOverride` | Fully override `vertical-pod-autoscaler.fullname` template with a string | `""` |
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` |
| `commonLabels` | Labels to add to all deployed objects | `{}` |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` |
### Admission controller parameters
| Name | Description | Default |
| -------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -------------------------------------- |
| `admissionController.enabled` | Enable the component | `true` |
| `admissionController.replicaCount` | Number of replicas | `1` |
| `admissionController.image.registry` | Image registry | `registry.k8s.io` |
| `admissionController.image.repository` | Image repository | `autoscaling/vpa-admission-controller` |
| `admissionController.image.tag` | Image tag | `1.3.0` |
| `admissionController.image.digest` | Image digest | `""` |
| `admissionController.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `admissionController.pdb.create` | Specifies whether a pod disruption budget should be created | `false` |
| `admissionController.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `1` |
| `admissionController.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable | `nil` |
| `admissionController.serviceAccount.create` | Specifies whether a service account should be created | `true` |
| `admissionController.serviceAccount.annotations` | Service account annotations | `{}` |
| `admissionController.serviceAccount.name` | The name of the service account to use (Generated using the `vertical-pod-autoscaler.fullname` template if not set) | `nil` |
| `admissionController.enableServiceLinks` | Whether information about services should be injected into pod's environment variable | `false` |
| `admissionController.hostAliases` | Pod host aliases | `[]` |
| `admissionController.deploymentAnnotations` | Additional deployment annotations | `{}` |
| `admissionController.podAnnotations` | Additional pod annotations | `{}` |
| `admissionController.podLabels` | Additional pod labels | `{}` |
| `admissionController.podSecurityContext` | Pod security context | |
| `admissionController.podSecurityContext.runAsNonRoot` | Whether the container must run as a non-root user | `true` |
| `admissionController.podSecurityContext.runAsUser` | The UID to run the entrypoint of the container process | `65534` |
| `admissionController.podSecurityContext.runAsGroup` | The GID to run the entrypoint of the container process | `65534` |
| `admissionController.hostNetwork` | Use the host network | `false` |
| `admissionController.priorityClassName` | Priority class name | `nil` |
| `admissionController.runtimeClassName` | Runtime class name | `""` |
| `admissionController.topologySpreadConstraints` | Topology Spread Constraints for pod assignment | `[]` |
| `admissionController.securityContext` | Container security context | `{}` |
| `admissionController.containerPorts.https` | Container port for HTTPS | `8000` |
| `admissionController.containerPorts.metrics` | Container port for Metrics | `8944` |
| `admissionController.livenessProbe.enabled` | Enable liveness probe | `true` |
| `admissionController.livenessProbe.initialDelaySeconds` | Delay before the liveness probe is initiated | `0` |
| `admissionController.livenessProbe.periodSeconds` | How often to perform the liveness probe | `10` |
| `admissionController.livenessProbe.timeoutSeconds` | When the liveness probe times out | `1` |
| `admissionController.livenessProbe.failureThreshold` | Minimum consecutive failures for the liveness probe to be considered failed after having succeeded | `3` |
| `admissionController.livenessProbe.successThreshold` | Minimum consecutive successes for the liveness probe to be considered successful after having failed | `1` |
| `admissionController.readinessProbe.enabled` | Enable readiness probe | `true` |
| `admissionController.readinessProbe.initialDelaySeconds` | Delay before the readiness probe is initiated | `0` |
| `admissionController.readinessProbe.periodSeconds` | How often to perform the readiness probe | `10` |
| `admissionController.readinessProbe.timeoutSeconds` | When the readiness probe times out | `1` |
| `admissionController.readinessProbe.failureThreshold` | Minimum consecutive failures for the readiness probe to be considered failed after having succeeded | `3` |
| `admissionController.readinessProbe.successThreshold` | Minimum consecutive successes for the readiness probe to be considered successful after having failed | `1` |
| `admissionController.startupProbe.enabled` | Enable startup probe | `false` |
| `admissionController.startupProbe.initialDelaySeconds` | Delay before the startup probe is initiated | `0` |
| `admissionController.startupProbe.periodSeconds` | How often to perform the startup probe | `10` |
| `admissionController.startupProbe.timeoutSeconds` | When the startup probe times out | `1` |
| `admissionController.startupProbe.failureThreshold` | Minimum consecutive failures for the startup probe to be considered failed after having succeeded | `3` |
| `admissionController.startupProbe.successThreshold` | Minimum consecutive successes for the startup probe to be considered successful after having failed | `1` |
| `admissionController.service.annotations` | Service annotations | `{}` |
| `admissionController.service.type` | Service type | `ClusterIP` |
| `admissionController.service.clusterIP` | Static cluster IP address or None for headless service when service type is ClusterIP | `nil` |
| `admissionController.service.ipFamilyPolicy` | Service IP family policy | `""` |
| `admissionController.service.ipFamilies` | Service IP families | `[]` |
| `admissionController.service.sessionAffinity` | Control where client requests go, to the same pod or round-robin | `None` |
| `admissionController.service.sessionAffinityConfig` | Additional settings for the sessionAffinity | `{}` |
| `admissionController.service.ports.https` | Service port for HTTPS (do not change it) | `443` |
| `admissionController.resources` | CPU/Memory resource requests/limits | `{}` |
| `admissionController.nodeSelector` | Node labels for pod assignment | `{}` |
| `admissionController.tolerations` | Tolerations for pod assignment | `[]` |
| `admissionController.affinity` | Map of node/pod affinities | `{}` |
| `admissionController.extraArgs` | Additional container arguments | |
| `admissionController.extraArgs.v` | Number for the log level verbosity | `2` |
| `admissionController.extraEnvVars` | Additional container environment variables | `[]` |
| `admissionController.extraEnvVarsCM` | Name of existing ConfigMap containing additional container environment variables | `nil` |
| `admissionController.extraEnvVarsSecret` | Name of existing Secret containing additional container environment variables | `nil` |
| `admissionController.extraVolumes` | Optionally specify extra list of additional volumes | `[]` |
| `admissionController.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts | `[]` |
| `admissionController.metrics.service.annotations` | Metrics service annotations | `{}` |
| `admissionController.metrics.service.type` | Metrics service type | `ClusterIP` |
| `admissionController.metrics.service.clusterIP` | Metrics static cluster IP address or None for headless service when service type is ClusterIP | `nil` |
| `admissionController.metrics.service.ipFamilyPolicy` | Metrics service IP family policy | `""` |
| `admissionController.metrics.service.ipFamilies` | Metrics service IP families | `[]` |
| `admissionController.metrics.service.ports.metrics` | Metrics service port for Metrics | `8944` |
| `admissionController.metrics.serviceMonitor.enabled` | Specifies whether a service monitor should be created | `false` |
| `admissionController.metrics.serviceMonitor.namespace` | Namespace in which to create the service monitor | `""` |
| `admissionController.metrics.serviceMonitor.annotations` | Service monitor annotations | `{}` |
| `admissionController.metrics.serviceMonitor.labels` | Additional service monitor labels | `{}` |
| `admissionController.metrics.serviceMonitor.jobLabel` | The name of the label on the target service to use as the job name in Prometheus | `""` |
| `admissionController.metrics.serviceMonitor.honorLabels` | Whether to choose the metrics labels on collisions with target labels | `false` |
| `admissionController.metrics.serviceMonitor.interval` | Interval at which metrics should be scraped | `""` |
| `admissionController.metrics.serviceMonitor.scrapeTimeout` | Timeout after which the scrape is ended | `""` |
| `admissionController.metrics.serviceMonitor.metricRelabelings` | Specify additional relabeling of metrics | `[]` |
| `admissionController.metrics.serviceMonitor.relabelings` | Specify general relabeling | `[]` |
| `admissionController.tls.caCert` | TLS CA certificate (Generated using the `genCA` function if not set) | `""` |
| `admissionController.tls.cert` | TLS certificate (Generated using the `genSignedCert` function if not set) | `""` |
| `admissionController.tls.key` | TLS private key (Generated using the `genSignedCert` function if not set) | `""` |
| `admissionController.tls.existingSecret` | Name of existing TLS Secret to use | `""` |
### Recommender parameters
| Name | Description | Default |
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------- | ----------------------------- |
| `recommender.replicaCount` | Number of replicas | `1` |
| `recommender.image.registry` | Image registry | `registry.k8s.io` |
| `recommender.image.repository` | Image repository | `autoscaling/vpa-recommender` |
| `recommender.image.tag` | Image tag | `1.3.0` |
| `recommender.image.digest` | Image digest | `""` |
| `recommender.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `recommender.pdb.create` | Specifies whether a pod disruption budget should be created | `false` |
| `recommender.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `1` |
| `recommender.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable | `nil` |
| `recommender.serviceAccount.create` | Specifies whether a service account should be created | `true` |
| `recommender.serviceAccount.annotations` | Service account annotations | `{}` |
| `recommender.serviceAccount.name` | The name of the service account to use (Generated using the `vertical-pod-autoscaler.fullname` template if not set) | `nil` |
| `recommender.enableServiceLinks` | Whether information about services should be injected into pod's environment variable | `false` |
| `recommender.hostAliases` | Pod host aliases | `[]` |
| `recommender.deploymentAnnotations` | Additional deployment annotations | `{}` |
| `recommender.podAnnotations` | Additional pod annotations | `{}` |
| `recommender.podLabels` | Additional pod labels | `{}` |
| `recommender.podSecurityContext` | Pod security context | |
| `recommender.podSecurityContext.runAsNonRoot` | Whether the container must run as a non-root user | `true` |
| `recommender.podSecurityContext.runAsUser` | The UID to run the entrypoint of the container process | `65534` |
| `recommender.podSecurityContext.runAsGroup` | The GID to run the entrypoint of the container process | `65534` |
| `recommender.priorityClassName` | Priority class name | `nil` |
| `recommender.runtimeClassName` | Runtime class name | `""` |
| `recommender.topologySpreadConstraints` | Topology Spread Constraints for pod assignment | `[]` |
| `recommender.securityContext` | Container security context | `{}` |
| `recommender.containerPorts.metrics` | Container port for Metrics | `8942` |
| `recommender.livenessProbe.enabled` | Enable liveness probe | `true` |
| `recommender.livenessProbe.initialDelaySeconds` | Delay before the liveness probe is initiated | `0` |
| `recommender.livenessProbe.periodSeconds` | How often to perform the liveness probe | `10` |
| `recommender.livenessProbe.timeoutSeconds` | When the liveness probe times out | `1` |
| `recommender.livenessProbe.failureThreshold` | Minimum consecutive failures for the liveness probe to be considered failed after having succeeded | `3` |
| `recommender.livenessProbe.successThreshold` | Minimum consecutive successes for the liveness probe to be considered successful after having failed | `1` |
| `recommender.readinessProbe.enabled` | Enable readiness probe | `true` |
| `recommender.readinessProbe.initialDelaySeconds` | Delay before the readiness probe is initiated | `0` |
| `recommender.readinessProbe.periodSeconds` | How often to perform the readiness probe | `10` |
| `recommender.readinessProbe.timeoutSeconds` | When the readiness probe times out | `1` |
| `recommender.readinessProbe.failureThreshold` | Minimum consecutive failures for the readiness probe to be considered failed after having succeeded | `3` |
| `recommender.readinessProbe.successThreshold` | Minimum consecutive successes for the readiness probe to be considered successful after having failed | `1` |
| `recommender.startupProbe.enabled` | Enable startup probe | `false` |
| `recommender.startupProbe.initialDelaySeconds` | Delay before the startup probe is initiated | `0` |
| `recommender.startupProbe.periodSeconds` | How often to perform the startup probe | `10` |
| `recommender.startupProbe.timeoutSeconds` | When the startup probe times out | `1` |
| `recommender.startupProbe.failureThreshold` | Minimum consecutive failures for the startup probe to be considered failed after having succeeded | `3` |
| `recommender.startupProbe.successThreshold` | Minimum consecutive successes for the startup probe to be considered successful after having failed | `1` |
| `recommender.resources` | CPU/Memory resource requests/limits | `{}` |
| `recommender.nodeSelector` | Node labels for pod assignment | `{}` |
| `recommender.tolerations` | Tolerations for pod assignment | `[]` |
| `recommender.affinity` | Map of node/pod affinities | `{}` |
| `recommender.extraArgs` | Additional container arguments | |
| `recommender.extraArgs.v` | Number for the log level verbosity | `2` |
| `recommender.extraEnvVars` | Additional container environment variables | `[]` |
| `recommender.extraEnvVarsCM` | Name of existing ConfigMap containing additional container environment variables | `nil` |
| `recommender.extraEnvVarsSecret` | Name of existing Secret containing additional container environment variables | `nil` |
| `recommender.extraVolumes` | Optionally specify extra list of additional volumes | `[]` |
| `recommender.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts | `[]` |
| `recommender.metrics.service.annotations` | Metrics service annotations | `{}` |
| `recommender.metrics.service.type` | Metrics service type | `ClusterIP` |
| `recommender.metrics.service.clusterIP` | Metrics static cluster IP address or None for headless service when service type is ClusterIP | `nil` |
| `recommender.metrics.service.ipFamilyPolicy` | Metrics service IP family policy | `""` |
| `recommender.metrics.service.ipFamilies` | Metrics service IP families | `[]` |
| `recommender.metrics.service.ports.metrics` | Metrics service port for Metrics | `8942` |
| `recommender.metrics.serviceMonitor.enabled` | Specifies whether a service monitor should be created | `false` |
| `recommender.metrics.serviceMonitor.namespace` | Namespace in which to create the service monitor | `""` |
| `recommender.metrics.serviceMonitor.annotations` | Service monitor annotations | `{}` |
| `recommender.metrics.serviceMonitor.labels` | Additional service monitor labels | `{}` |
| `recommender.metrics.serviceMonitor.jobLabel` | The name of the label on the target service to use as the job name in Prometheus | `""` |
| `recommender.metrics.serviceMonitor.honorLabels` | Whether to choose the metrics labels on collisions with target labels | `false` |
| `recommender.metrics.serviceMonitor.interval` | Interval at which metrics should be scraped | `""` |
| `recommender.metrics.serviceMonitor.scrapeTimeout` | Timeout after which the scrape is ended | `""` |
| `recommender.metrics.serviceMonitor.metricRelabelings` | Specify additional relabeling of metrics | `[]` |
| `recommender.metrics.serviceMonitor.relabelings` | Specify general relabeling | `[]` |
### Updater parameters
| Name | Description | Default |
| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------- |
| `updater.enabled` | Enable the component | `true` |
| `updater.replicaCount` | Number of replicas | `1` |
| `updater.image.registry` | Image registry | `registry.k8s.io` |
| `updater.image.repository` | Image repository | `autoscaling/vpa-updater` |
| `updater.image.tag` | Image tag | `1.3.0` |
| `updater.image.digest` | Image digest | `""` |
| `updater.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `updater.pdb.create` | Specifies whether a pod disruption budget should be created | `false` |
| `updater.pdb.minAvailable` | Minimum number/percentage of pods that should remain scheduled | `1` |
| `updater.pdb.maxUnavailable` | Maximum number/percentage of pods that may be made unavailable | `nil` |
| `updater.serviceAccount.create` | Specifies whether a service account should be created | `true` |
| `updater.serviceAccount.annotations` | Service account annotations | `{}` |
| `updater.serviceAccount.name` | The name of the service account to use (Generated using the `vertical-pod-autoscaler.fullname` template if not set) | `nil` |
| `updater.enableServiceLinks` | Whether information about services should be injected into pod's environment variable | `false` |
| `updater.hostAliases` | Pod host aliases | `[]` |
| `updater.deploymentAnnotations` | Additional deployment annotations | `{}` |
| `updater.podAnnotations` | Additional pod annotations | `{}` |
| `updater.podLabels` | Additional pod labels | `{}` |
| `updater.podSecurityContext` | Pod security context | |
| `updater.podSecurityContext.runAsNonRoot` | Whether the container must run as a non-root user | `true` |
| `updater.podSecurityContext.runAsUser` | The UID to run the entrypoint of the container process | `65534` |
| `updater.podSecurityContext.runAsGroup` | The GID to run the entrypoint of the container process | `65534` |
| `updater.priorityClassName` | Priority class name | `nil` |
| `updater.runtimeClassName` | Runtime class name | `""` |
| `updater.topologySpreadConstraints` | Topology Spread Constraints for pod assignment | `[]` |
| `updater.securityContext` | Container security context | `{}` |
| `updater.containerPorts.metrics` | Container port for Metrics | `8943` |
| `updater.livenessProbe.enabled` | Enable liveness probe | `true` |
| `updater.livenessProbe.initialDelaySeconds` | Delay before the liveness probe is initiated | `0` |
| `updater.livenessProbe.periodSeconds` | How often to perform the liveness probe | `10` |
| `updater.livenessProbe.timeoutSeconds` | When the liveness probe times out | `1` |
| `updater.livenessProbe.failureThreshold` | Minimum consecutive failures for the liveness probe to be considered failed after having succeeded | `3` |
| `updater.livenessProbe.successThreshold` | Minimum consecutive successes for the liveness probe to be considered successful after having failed | `1` |
| `updater.readinessProbe.enabled` | Enable readiness probe | `true` |
| `updater.readinessProbe.initialDelaySeconds` | Delay before the readiness probe is initiated | `0` |
| `updater.readinessProbe.periodSeconds` | How often to perform the readiness probe | `10` |
| `updater.readinessProbe.timeoutSeconds` | When the readiness probe times out | `1` |
| `updater.readinessProbe.failureThreshold` | Minimum consecutive failures for the readiness probe to be considered failed after having succeeded | `3` |
| `updater.readinessProbe.successThreshold` | Minimum consecutive successes for the readiness probe to be considered successful after having failed | `1` |
| `updater.startupProbe.enabled` | Enable startup probe | `false` |
| `updater.startupProbe.initialDelaySeconds` | Delay before the startup probe is initiated | `0` |
| `updater.startupProbe.periodSeconds` | How often to perform the startup probe | `10` |
| `updater.startupProbe.timeoutSeconds` | When the startup probe times out | `1` |
| `updater.startupProbe.failureThreshold` | Minimum consecutive failures for the startup probe to be considered failed after having succeeded | `3` |
| `updater.startupProbe.successThreshold` | Minimum consecutive successes for the startup probe to be considered successful after having failed | `1` |
| `updater.resources` | CPU/Memory resource requests/limits | `{}` |
| `updater.nodeSelector` | Node labels for pod assignment | `{}` |
| `updater.tolerations` | Tolerations for pod assignment | `[]` |
| `updater.affinity` | Map of node/pod affinities | `{}` |
| `updater.extraArgs` | Additional container arguments | |
| `updater.extraArgs.v` | Number for the log level verbosity | `2` |
| `updater.extraEnvVars` | Additional container environment variables | `[]` |
| `updater.extraEnvVarsCM` | Name of existing ConfigMap containing additional container environment variables | `nil` |
| `updater.extraEnvVarsSecret` | Name of existing Secret containing additional container environment variables | `nil` |
| `updater.extraVolumes` | Optionally specify extra list of additional volumes | `[]` |
| `updater.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts | `[]` |
| `updater.metrics.service.annotations` | Metrics service annotations | `{}` |
| `updater.metrics.service.type` | Metrics service type | `ClusterIP` |
| `updater.metrics.service.clusterIP` | Metrics static cluster IP address or None for headless service when service type is ClusterIP | `nil` |
| `updater.metrics.service.ipFamilyPolicy` | Metrics service IP family policy | `""` |
| `updater.metrics.service.ipFamilies` | Metrics service IP families | `[]` |
| `updater.metrics.service.ports.metrics` | Metrics service port for Metrics | `8943` |
| `updater.metrics.serviceMonitor.enabled` | Specifies whether a service monitor should be created | `false` |
| `updater.metrics.serviceMonitor.namespace` | Namespace in which to create the service monitor | `""` |
| `updater.metrics.serviceMonitor.annotations` | Service monitor annotations | `{}` |
| `updater.metrics.serviceMonitor.labels` | Additional service monitor labels | `{}` |
| `updater.metrics.serviceMonitor.jobLabel` | The name of the label on the target service to use as the job name in Prometheus | `""` |
| `updater.metrics.serviceMonitor.honorLabels` | Whether to choose the metrics labels on collisions with target labels | `false` |
| `updater.metrics.serviceMonitor.interval` | Interval at which metrics should be scraped | `""` |
| `updater.metrics.serviceMonitor.scrapeTimeout` | Timeout after which the scrape is ended | `""` |
| `updater.metrics.serviceMonitor.metricRelabelings` | Specify additional relabeling of metrics | `[]` |
| `updater.metrics.serviceMonitor.relabelings` | Specify general relabeling | `[]` |
### CRDs parameters
| Name | Description | Default |
| -------------------------------------- | ------------------------------------------------------ | ----------------- |
| `crds.enabled` | Enable CRDs | `true` |
| `crds.image.registry` | Image registry | `docker.io` |
| `crds.image.repository` | Image repository | `bitnami/kubectl` |
| `crds.image.tag` | Image tag | `1.29.3` |
| `crds.image.digest` | Image digest | `""` |
| `crds.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `crds.podAnnotations` | Additional pod annotations | `{}` |
| `crds.podLabels` | Additional pod labels | `{}` |
| `crds.podSecurityContext` | Pod security context | |
| `crds.podSecurityContext.runAsNonRoot` | Whether the container must run as a non-root user | `true` |
| `crds.podSecurityContext.runAsUser` | The UID to run the entrypoint of the container process | `1001` |
| `crds.podSecurityContext.runAsGroup` | The GID to run the entrypoint of the container process | `1001` |
| `crds.securityContext` | Container security context | `{}` |
| `crds.resources` | CPU/Memory resource requests/limits | `{}` |
| `crds.nodeSelector` | Node labels for pod assignment | `{}` |
| `crds.tolerations` | Tolerations for pod assignment | `[]` |
| `crds.affinity` | Map of node/pod affinities | `{}` |
### Tests parameters
| Name | Description | Default |
| ------------------------ | ----------------- | -------------------- |
| `tests.image.registry` | Image registry | `ghcr.io` |
| `tests.image.repository` | Image repository | `cowboysysop/pytest` |
| `tests.image.tag` | Image tag | `1.0.41` |
| `tests.image.digest` | Image digest | `""` |
| `tests.image.pullPolicy` | Image pull policy | `IfNotPresent` |
## Setting parameters
Specify the parameters you which to customize using the `--set` argument to the `helm install` command. For instance,
```bash
$ helm install my-release \
--set nameOverride=my-name cowboysysop/vertical-pod-autoscaler
```
The above command sets the `nameOverride` to `my-name`.
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
```bash
$ helm install my-release \
--values values.yaml cowboysysop/vertical-pod-autoscaler
```
**TIP**: You can use the default [values.yaml](values.yaml).
## Limitations
Due to hard-coded values in Vertical Pod Autoscaler, the chart configuration has some limitations:
- Admission controller component service name is `vpa-webhook`
- Admission controller component service port is `443`
- Mutating webhook configuration name automatically created by admission controller component is `vpa-webhook-config`
## License
The source code of this chart is under [MIT License](LICENSE).
It also uses source code under Apache 2.0 License from the [Bitnami repository](https://github.com/bitnami/charts).

View File

@@ -0,0 +1,26 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# img folder
img/
# Changelog
CHANGELOG.md

View File

@@ -0,0 +1,23 @@
annotations:
category: Infrastructure
licenses: Apache-2.0
apiVersion: v2
appVersion: 2.21.0
description: A Library Helm Chart for grouping common logic between bitnami charts.
This chart is not deployable by itself.
home: https://bitnami.com
icon: https://bitnami.com/downloads/logos/bitnami-mark.png
keywords:
- common
- helper
- template
- function
- bitnami
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: common
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/common
type: library
version: 2.21.0

View File

@@ -0,0 +1,235 @@
# Bitnami Common Library Chart
A [Helm Library Chart](https://helm.sh/docs/topics/library_charts/#helm) for grouping common logic between Bitnami charts.
## TL;DR
```yaml
dependencies:
- name: common
version: 2.x.x
repository: oci://registry-1.docker.io/bitnamicharts
```
```console
helm dependency update
```
```yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "common.names.fullname" . }}
data:
myvalue: "Hello World"
```
Looking to use our applications in production? Try [VMware Tanzu Application Catalog](https://bitnami.com/enterprise), the commercial edition of the Bitnami catalog.
## Introduction
This chart provides a common template helpers which can be used to develop new charts using [Helm](https://helm.sh) package manager.
Bitnami charts can be used with [Kubeapps](https://kubeapps.dev/) for deployment and management of Helm Charts in clusters.
## Prerequisites
- Kubernetes 1.23+
- Helm 3.8.0+
## Parameters
## Special input schemas
### ImageRoot
```yaml
registry:
type: string
description: Docker registry where the image is located
example: docker.io
repository:
type: string
description: Repository and image name
example: bitnami/nginx
tag:
type: string
description: image tag
example: 1.16.1-debian-10-r63
pullPolicy:
type: string
description: Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
pullSecrets:
type: array
items:
type: string
description: Optionally specify an array of imagePullSecrets (evaluated as templates).
debug:
type: boolean
description: Set to true if you would like to see extra information on logs
example: false
## An instance would be:
# registry: docker.io
# repository: bitnami/nginx
# tag: 1.16.1-debian-10-r63
# pullPolicy: IfNotPresent
# debug: false
```
### Persistence
```yaml
enabled:
type: boolean
description: Whether enable persistence.
example: true
storageClass:
type: string
description: Ghost data Persistent Volume Storage Class, If set to "-", storageClassName: "" which disables dynamic provisioning.
example: "-"
accessMode:
type: string
description: Access mode for the Persistent Volume Storage.
example: ReadWriteOnce
size:
type: string
description: Size the Persistent Volume Storage.
example: 8Gi
path:
type: string
description: Path to be persisted.
example: /bitnami
## An instance would be:
# enabled: true
# storageClass: "-"
# accessMode: ReadWriteOnce
# size: 8Gi
# path: /bitnami
```
### ExistingSecret
```yaml
name:
type: string
description: Name of the existing secret.
example: mySecret
keyMapping:
description: Mapping between the expected key name and the name of the key in the existing secret.
type: object
## An instance would be:
# name: mySecret
# keyMapping:
# password: myPasswordKey
```
#### Example of use
When we store sensitive data for a deployment in a secret, some times we want to give to users the possibility of using theirs existing secrets.
```yaml
# templates/secret.yaml
---
apiVersion: v1
kind: Secret
metadata:
name: {{ include "common.names.fullname" . }}
labels:
app: {{ include "common.names.fullname" . }}
type: Opaque
data:
password: {{ .Values.password | b64enc | quote }}
# templates/dpl.yaml
---
...
env:
- name: PASSWORD
valueFrom:
secretKeyRef:
name: {{ include "common.secrets.name" (dict "existingSecret" .Values.existingSecret "context" $) }}
key: {{ include "common.secrets.key" (dict "existingSecret" .Values.existingSecret "key" "password") }}
...
# values.yaml
---
name: mySecret
keyMapping:
password: myPasswordKey
```
### ValidateValue
#### NOTES.txt
```console
{{- $validateValueConf00 := (dict "valueKey" "path.to.value00" "secret" "secretName" "field" "password-00") -}}
{{- $validateValueConf01 := (dict "valueKey" "path.to.value01" "secret" "secretName" "field" "password-01") -}}
{{ include "common.validations.values.multiple.empty" (dict "required" (list $validateValueConf00 $validateValueConf01) "context" $) }}
```
If we force those values to be empty we will see some alerts
```console
helm install test mychart --set path.to.value00="",path.to.value01=""
'path.to.value00' must not be empty, please add '--set path.to.value00=$PASSWORD_00' to the command. To get the current value:
export PASSWORD_00=$(kubectl get secret --namespace default secretName -o jsonpath="{.data.password-00}" | base64 -d)
'path.to.value01' must not be empty, please add '--set path.to.value01=$PASSWORD_01' to the command. To get the current value:
export PASSWORD_01=$(kubectl get secret --namespace default secretName -o jsonpath="{.data.password-01}" | base64 -d)
```
## Upgrading
### To 1.0.0
[On November 13, 2020, Helm v2 support was formally finished](https://github.com/helm/charts#status-of-the-project), this major version is the result of the required changes applied to the Helm Chart to be able to incorporate the different features added in Helm v3 and to be consistent with the Helm project itself regarding the Helm v2 EOL.
#### What changes were introduced in this major version?
- Previous versions of this Helm Chart use `apiVersion: v1` (installable by both Helm 2 and 3), this Helm Chart was updated to `apiVersion: v2` (installable by Helm 3 only). [Here](https://helm.sh/docs/topics/charts/#the-apiversion-field) you can find more information about the `apiVersion` field.
- Use `type: library`. [Here](https://v3.helm.sh/docs/faq/#library-chart-support) you can find more information.
- The different fields present in the *Chart.yaml* file has been ordered alphabetically in a homogeneous way for all the Bitnami Helm Charts
#### Considerations when upgrading to this version
- If you want to upgrade to this version from a previous one installed with Helm v3, you shouldn't face any issues
- If you want to upgrade to this version using Helm v2, this scenario is not supported as this version doesn't support Helm v2 anymore
- If you installed the previous version with Helm v2 and wants to upgrade to this version with Helm v3, please refer to the [official Helm documentation](https://helm.sh/docs/topics/v2_v3_migration/#migration-use-cases) about migrating from Helm v2 to v3
#### Useful links
- <https://docs.vmware.com/en/VMware-Tanzu-Application-Catalog/services/tutorials/GUID-resolve-helm2-helm3-post-migration-issues-index.html>
- <https://helm.sh/docs/topics/v2_v3_migration/>
- <https://helm.sh/blog/migrate-from-helm-v2-to-helm-v3/>
## License
Copyright &copy; 2024 Broadcom. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
<http://www.apache.org/licenses/LICENSE-2.0>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -0,0 +1,139 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Return a soft nodeAffinity definition
{{ include "common.affinities.nodes.soft" (dict "key" "FOO" "values" (list "BAR" "BAZ")) -}}
*/}}
{{- define "common.affinities.nodes.soft" -}}
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- key: {{ .key }}
operator: In
values:
{{- range .values }}
- {{ . | quote }}
{{- end }}
weight: 1
{{- end -}}
{{/*
Return a hard nodeAffinity definition
{{ include "common.affinities.nodes.hard" (dict "key" "FOO" "values" (list "BAR" "BAZ")) -}}
*/}}
{{- define "common.affinities.nodes.hard" -}}
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: {{ .key }}
operator: In
values:
{{- range .values }}
- {{ . | quote }}
{{- end }}
{{- end -}}
{{/*
Return a nodeAffinity definition
{{ include "common.affinities.nodes" (dict "type" "soft" "key" "FOO" "values" (list "BAR" "BAZ")) -}}
*/}}
{{- define "common.affinities.nodes" -}}
{{- if eq .type "soft" }}
{{- include "common.affinities.nodes.soft" . -}}
{{- else if eq .type "hard" }}
{{- include "common.affinities.nodes.hard" . -}}
{{- end -}}
{{- end -}}
{{/*
Return a topologyKey definition
{{ include "common.affinities.topologyKey" (dict "topologyKey" "BAR") -}}
*/}}
{{- define "common.affinities.topologyKey" -}}
{{ .topologyKey | default "kubernetes.io/hostname" -}}
{{- end -}}
{{/*
Return a soft podAffinity/podAntiAffinity definition
{{ include "common.affinities.pods.soft" (dict "component" "FOO" "customLabels" .Values.podLabels "extraMatchLabels" .Values.extraMatchLabels "topologyKey" "BAR" "extraPodAffinityTerms" .Values.extraPodAffinityTerms "context" $) -}}
*/}}
{{- define "common.affinities.pods.soft" -}}
{{- $component := default "" .component -}}
{{- $customLabels := default (dict) .customLabels -}}
{{- $extraMatchLabels := default (dict) .extraMatchLabels -}}
{{- $extraPodAffinityTerms := default (list) .extraPodAffinityTerms -}}
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchLabels: {{- (include "common.labels.matchLabels" ( dict "customLabels" $customLabels "context" .context )) | nindent 10 }}
{{- if not (empty $component) }}
{{ printf "app.kubernetes.io/component: %s" $component }}
{{- end }}
{{- range $key, $value := $extraMatchLabels }}
{{ $key }}: {{ $value | quote }}
{{- end }}
topologyKey: {{ include "common.affinities.topologyKey" (dict "topologyKey" .topologyKey) }}
weight: 1
{{- range $extraPodAffinityTerms }}
- podAffinityTerm:
labelSelector:
matchLabels: {{- (include "common.labels.matchLabels" ( dict "customLabels" $customLabels "context" $.context )) | nindent 10 }}
{{- if not (empty $component) }}
{{ printf "app.kubernetes.io/component: %s" $component }}
{{- end }}
{{- range $key, $value := .extraMatchLabels }}
{{ $key }}: {{ $value | quote }}
{{- end }}
topologyKey: {{ include "common.affinities.topologyKey" (dict "topologyKey" .topologyKey) }}
weight: {{ .weight | default 1 -}}
{{- end -}}
{{- end -}}
{{/*
Return a hard podAffinity/podAntiAffinity definition
{{ include "common.affinities.pods.hard" (dict "component" "FOO" "customLabels" .Values.podLabels "extraMatchLabels" .Values.extraMatchLabels "topologyKey" "BAR" "extraPodAffinityTerms" .Values.extraPodAffinityTerms "context" $) -}}
*/}}
{{- define "common.affinities.pods.hard" -}}
{{- $component := default "" .component -}}
{{- $customLabels := default (dict) .customLabels -}}
{{- $extraMatchLabels := default (dict) .extraMatchLabels -}}
{{- $extraPodAffinityTerms := default (list) .extraPodAffinityTerms -}}
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchLabels: {{- (include "common.labels.matchLabels" ( dict "customLabels" $customLabels "context" .context )) | nindent 8 }}
{{- if not (empty $component) }}
{{ printf "app.kubernetes.io/component: %s" $component }}
{{- end }}
{{- range $key, $value := $extraMatchLabels }}
{{ $key }}: {{ $value | quote }}
{{- end }}
topologyKey: {{ include "common.affinities.topologyKey" (dict "topologyKey" .topologyKey) }}
{{- range $extraPodAffinityTerms }}
- labelSelector:
matchLabels: {{- (include "common.labels.matchLabels" ( dict "customLabels" $customLabels "context" $.context )) | nindent 8 }}
{{- if not (empty $component) }}
{{ printf "app.kubernetes.io/component: %s" $component }}
{{- end }}
{{- range $key, $value := .extraMatchLabels }}
{{ $key }}: {{ $value | quote }}
{{- end }}
topologyKey: {{ include "common.affinities.topologyKey" (dict "topologyKey" .topologyKey) }}
{{- end -}}
{{- end -}}
{{/*
Return a podAffinity/podAntiAffinity definition
{{ include "common.affinities.pods" (dict "type" "soft" "key" "FOO" "values" (list "BAR" "BAZ")) -}}
*/}}
{{- define "common.affinities.pods" -}}
{{- if eq .type "soft" }}
{{- include "common.affinities.pods.soft" . -}}
{{- else if eq .type "hard" }}
{{- include "common.affinities.pods.hard" . -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,229 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Return the target Kubernetes version
*/}}
{{- define "common.capabilities.kubeVersion" -}}
{{- default (default .Capabilities.KubeVersion.Version .Values.kubeVersion) ((.Values.global).kubeVersion) -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for poddisruptionbudget.
*/}}
{{- define "common.capabilities.policy.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.21-0" $kubeVersion) -}}
{{- print "policy/v1beta1" -}}
{{- else -}}
{{- print "policy/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for networkpolicy.
*/}}
{{- define "common.capabilities.networkPolicy.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.7-0" $kubeVersion) -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "networking.k8s.io/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for cronjob.
*/}}
{{- define "common.capabilities.cronjob.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.21-0" $kubeVersion) -}}
{{- print "batch/v1beta1" -}}
{{- else -}}
{{- print "batch/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for daemonset.
*/}}
{{- define "common.capabilities.daemonset.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.14-0" $kubeVersion) -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for deployment.
*/}}
{{- define "common.capabilities.deployment.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.14-0" $kubeVersion) -}}
{{- print "extensions/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for statefulset.
*/}}
{{- define "common.capabilities.statefulset.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.14-0" $kubeVersion) -}}
{{- print "apps/v1beta1" -}}
{{- else -}}
{{- print "apps/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for ingress.
*/}}
{{- define "common.capabilities.ingress.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if (.Values.ingress).apiVersion -}}
{{- .Values.ingress.apiVersion -}}
{{- else if and (not (empty $kubeVersion)) (semverCompare "<1.14-0" $kubeVersion) -}}
{{- print "extensions/v1beta1" -}}
{{- else if and (not (empty $kubeVersion)) (semverCompare "<1.19-0" $kubeVersion) -}}
{{- print "networking.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "networking.k8s.io/v1" -}}
{{- end }}
{{- end -}}
{{/*
Return the appropriate apiVersion for RBAC resources.
*/}}
{{- define "common.capabilities.rbac.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.17-0" $kubeVersion) -}}
{{- print "rbac.authorization.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "rbac.authorization.k8s.io/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for CRDs.
*/}}
{{- define "common.capabilities.crd.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.19-0" $kubeVersion) -}}
{{- print "apiextensions.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "apiextensions.k8s.io/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for APIService.
*/}}
{{- define "common.capabilities.apiService.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.10-0" $kubeVersion) -}}
{{- print "apiregistration.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "apiregistration.k8s.io/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for Horizontal Pod Autoscaler.
*/}}
{{- define "common.capabilities.hpa.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" .context -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.23-0" $kubeVersion) -}}
{{- if .beta2 -}}
{{- print "autoscaling/v2beta2" -}}
{{- else -}}
{{- print "autoscaling/v2beta1" -}}
{{- end -}}
{{- else -}}
{{- print "autoscaling/v2" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for Vertical Pod Autoscaler.
*/}}
{{- define "common.capabilities.vpa.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" .context -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.23-0" $kubeVersion) -}}
{{- if .beta2 -}}
{{- print "autoscaling/v2beta2" -}}
{{- else -}}
{{- print "autoscaling/v2beta1" -}}
{{- end -}}
{{- else -}}
{{- print "autoscaling/v2" -}}
{{- end -}}
{{- end -}}
{{/*
Returns true if PodSecurityPolicy is supported
*/}}
{{- define "common.capabilities.psp.supported" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if or (empty $kubeVersion) (semverCompare "<1.25-0" $kubeVersion) -}}
{{- true -}}
{{- end -}}
{{- end -}}
{{/*
Returns true if AdmissionConfiguration is supported
*/}}
{{- define "common.capabilities.admissionConfiguration.supported" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if or (empty $kubeVersion) (not (semverCompare "<1.23-0" $kubeVersion)) -}}
{{- true -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for AdmissionConfiguration.
*/}}
{{- define "common.capabilities.admissionConfiguration.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.23-0" $kubeVersion) -}}
{{- print "apiserver.config.k8s.io/v1alpha1" -}}
{{- else if and (not (empty $kubeVersion)) (semverCompare "<1.25-0" $kubeVersion) -}}
{{- print "apiserver.config.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "apiserver.config.k8s.io/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Return the appropriate apiVersion for PodSecurityConfiguration.
*/}}
{{- define "common.capabilities.podSecurityConfiguration.apiVersion" -}}
{{- $kubeVersion := include "common.capabilities.kubeVersion" . -}}
{{- if and (not (empty $kubeVersion)) (semverCompare "<1.23-0" $kubeVersion) -}}
{{- print "pod-security.admission.config.k8s.io/v1alpha1" -}}
{{- else if and (not (empty $kubeVersion)) (semverCompare "<1.25-0" $kubeVersion) -}}
{{- print "pod-security.admission.config.k8s.io/v1beta1" -}}
{{- else -}}
{{- print "pod-security.admission.config.k8s.io/v1" -}}
{{- end -}}
{{- end -}}
{{/*
Returns true if the used Helm version is 3.3+.
A way to check the used Helm version was not introduced until version 3.3.0 with .Capabilities.HelmVersion, which contains an additional "{}}" structure.
This check is introduced as a regexMatch instead of {{ if .Capabilities.HelmVersion }} because checking for the key HelmVersion in <3.3 results in a "interface not found" error.
**To be removed when the catalog's minimun Helm version is 3.3**
*/}}
{{- define "common.capabilities.supportsHelmVersion" -}}
{{- if regexMatch "{(v[0-9])*[^}]*}}$" (.Capabilities | toString ) }}
{{- true -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,42 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Return true if the detected platform is Openshift
Usage:
{{- include "common.compatibility.isOpenshift" . -}}
*/}}
{{- define "common.compatibility.isOpenshift" -}}
{{- if .Capabilities.APIVersions.Has "security.openshift.io/v1" -}}
{{- true -}}
{{- end -}}
{{- end -}}
{{/*
Render a compatible securityContext depending on the platform. By default it is maintained as it is. In other platforms like Openshift we remove default user/group values that do not work out of the box with the restricted-v1 SCC
Usage:
{{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.containerSecurityContext "context" $) -}}
*/}}
{{- define "common.compatibility.renderSecurityContext" -}}
{{- $adaptedContext := .secContext -}}
{{- if (((.context.Values.global).compatibility).openshift) -}}
{{- if or (eq .context.Values.global.compatibility.openshift.adaptSecurityContext "force") (and (eq .context.Values.global.compatibility.openshift.adaptSecurityContext "auto") (include "common.compatibility.isOpenshift" .context)) -}}
{{/* Remove incompatible user/group values that do not work in Openshift out of the box */}}
{{- $adaptedContext = omit $adaptedContext "fsGroup" "runAsUser" "runAsGroup" -}}
{{- if not .secContext.seLinuxOptions -}}
{{/* If it is an empty object, we remove it from the resulting context because it causes validation issues */}}
{{- $adaptedContext = omit $adaptedContext "seLinuxOptions" -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{/* Remove fields that are disregarded when running the container in privileged mode */}}
{{- if $adaptedContext.privileged -}}
{{- $adaptedContext = omit $adaptedContext "capabilities" "seLinuxOptions" -}}
{{- end -}}
{{- omit $adaptedContext "enabled" | toYaml -}}
{{- end -}}

View File

@@ -0,0 +1,28 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Through error when upgrading using empty passwords values that must not be empty.
Usage:
{{- $validationError00 := include "common.validations.values.single.empty" (dict "valueKey" "path.to.password00" "secret" "secretName" "field" "password-00") -}}
{{- $validationError01 := include "common.validations.values.single.empty" (dict "valueKey" "path.to.password01" "secret" "secretName" "field" "password-01") -}}
{{ include "common.errors.upgrade.passwords.empty" (dict "validationErrors" (list $validationError00 $validationError01) "context" $) }}
Required password params:
- validationErrors - String - Required. List of validation strings to be return, if it is empty it won't throw error.
- context - Context - Required. Parent context.
*/}}
{{- define "common.errors.upgrade.passwords.empty" -}}
{{- $validationErrors := join "" .validationErrors -}}
{{- if and $validationErrors .context.Release.IsUpgrade -}}
{{- $errorString := "\nPASSWORDS ERROR: You must provide your current passwords when upgrading the release." -}}
{{- $errorString = print $errorString "\n Note that even after reinstallation, old credentials may be needed as they may be kept in persistent volume claims." -}}
{{- $errorString = print $errorString "\n Further information can be obtained at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases" -}}
{{- $errorString = print $errorString "\n%s" -}}
{{- printf $errorString $validationErrors | fail -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,109 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Return the proper image name
{{ include "common.images.image" ( dict "imageRoot" .Values.path.to.the.image "global" .Values.global ) }}
*/}}
{{- define "common.images.image" -}}
{{- $registryName := default .imageRoot.registry ((.global).imageRegistry) -}}
{{- $repositoryName := .imageRoot.repository -}}
{{- $separator := ":" -}}
{{- $termination := .imageRoot.tag | toString -}}
{{- if .imageRoot.digest }}
{{- $separator = "@" -}}
{{- $termination = .imageRoot.digest | toString -}}
{{- end -}}
{{- if $registryName }}
{{- printf "%s/%s%s%s" $registryName $repositoryName $separator $termination -}}
{{- else -}}
{{- printf "%s%s%s" $repositoryName $separator $termination -}}
{{- end -}}
{{- end -}}
{{/*
Return the proper Docker Image Registry Secret Names (deprecated: use common.images.renderPullSecrets instead)
{{ include "common.images.pullSecrets" ( dict "images" (list .Values.path.to.the.image1, .Values.path.to.the.image2) "global" .Values.global) }}
*/}}
{{- define "common.images.pullSecrets" -}}
{{- $pullSecrets := list }}
{{- range ((.global).imagePullSecrets) -}}
{{- if kindIs "map" . -}}
{{- $pullSecrets = append $pullSecrets .name -}}
{{- else -}}
{{- $pullSecrets = append $pullSecrets . -}}
{{- end }}
{{- end -}}
{{- range .images -}}
{{- range .pullSecrets -}}
{{- if kindIs "map" . -}}
{{- $pullSecrets = append $pullSecrets .name -}}
{{- else -}}
{{- $pullSecrets = append $pullSecrets . -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- if (not (empty $pullSecrets)) -}}
imagePullSecrets:
{{- range $pullSecrets | uniq }}
- name: {{ . }}
{{- end }}
{{- end }}
{{- end -}}
{{/*
Return the proper Docker Image Registry Secret Names evaluating values as templates
{{ include "common.images.renderPullSecrets" ( dict "images" (list .Values.path.to.the.image1, .Values.path.to.the.image2) "context" $) }}
*/}}
{{- define "common.images.renderPullSecrets" -}}
{{- $pullSecrets := list }}
{{- $context := .context }}
{{- range (($context.Values.global).imagePullSecrets) -}}
{{- if kindIs "map" . -}}
{{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" .name "context" $context)) -}}
{{- else -}}
{{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" . "context" $context)) -}}
{{- end -}}
{{- end -}}
{{- range .images -}}
{{- range .pullSecrets -}}
{{- if kindIs "map" . -}}
{{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" .name "context" $context)) -}}
{{- else -}}
{{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" . "context" $context)) -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- if (not (empty $pullSecrets)) -}}
imagePullSecrets:
{{- range $pullSecrets | uniq }}
- name: {{ . }}
{{- end }}
{{- end }}
{{- end -}}
{{/*
Return the proper image version (ingores image revision/prerelease info & fallbacks to chart appVersion)
{{ include "common.images.version" ( dict "imageRoot" .Values.path.to.the.image "chart" .Chart ) }}
*/}}
{{- define "common.images.version" -}}
{{- $imageTag := .imageRoot.tag | toString -}}
{{/* regexp from https://github.com/Masterminds/semver/blob/23f51de38a0866c5ef0bfc42b3f735c73107b700/version.go#L41-L44 */}}
{{- if regexMatch `^([0-9]+)(\.[0-9]+)?(\.[0-9]+)?(-([0-9A-Za-z\-]+(\.[0-9A-Za-z\-]+)*))?(\+([0-9A-Za-z\-]+(\.[0-9A-Za-z\-]+)*))?$` $imageTag -}}
{{- $version := semver $imageTag -}}
{{- printf "%d.%d.%d" $version.Major $version.Minor $version.Patch -}}
{{- else -}}
{{- print .chart.AppVersion -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,73 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Generate backend entry that is compatible with all Kubernetes API versions.
Usage:
{{ include "common.ingress.backend" (dict "serviceName" "backendName" "servicePort" "backendPort" "context" $) }}
Params:
- serviceName - String. Name of an existing service backend
- servicePort - String/Int. Port name (or number) of the service. It will be translated to different yaml depending if it is a string or an integer.
- context - Dict - Required. The context for the template evaluation.
*/}}
{{- define "common.ingress.backend" -}}
{{- $apiVersion := (include "common.capabilities.ingress.apiVersion" .context) -}}
{{- if or (eq $apiVersion "extensions/v1beta1") (eq $apiVersion "networking.k8s.io/v1beta1") -}}
serviceName: {{ .serviceName }}
servicePort: {{ .servicePort }}
{{- else -}}
service:
name: {{ .serviceName }}
port:
{{- if typeIs "string" .servicePort }}
name: {{ .servicePort }}
{{- else if or (typeIs "int" .servicePort) (typeIs "float64" .servicePort) }}
number: {{ .servicePort | int }}
{{- end }}
{{- end -}}
{{- end -}}
{{/*
Print "true" if the API pathType field is supported
Usage:
{{ include "common.ingress.supportsPathType" . }}
*/}}
{{- define "common.ingress.supportsPathType" -}}
{{- if (semverCompare "<1.18-0" (include "common.capabilities.kubeVersion" .)) -}}
{{- print "false" -}}
{{- else -}}
{{- print "true" -}}
{{- end -}}
{{- end -}}
{{/*
Returns true if the ingressClassname field is supported
Usage:
{{ include "common.ingress.supportsIngressClassname" . }}
*/}}
{{- define "common.ingress.supportsIngressClassname" -}}
{{- if semverCompare "<1.18-0" (include "common.capabilities.kubeVersion" .) -}}
{{- print "false" -}}
{{- else -}}
{{- print "true" -}}
{{- end -}}
{{- end -}}
{{/*
Return true if cert-manager required annotations for TLS signed
certificates are set in the Ingress annotations
Ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations
Usage:
{{ include "common.ingress.certManagerRequest" ( dict "annotations" .Values.path.to.the.ingress.annotations ) }}
*/}}
{{- define "common.ingress.certManagerRequest" -}}
{{ if or (hasKey .annotations "cert-manager.io/cluster-issuer") (hasKey .annotations "cert-manager.io/issuer") (hasKey .annotations "kubernetes.io/tls-acme") }}
{{- true -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,46 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Kubernetes standard labels
{{ include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" $) -}}
*/}}
{{- define "common.labels.standard" -}}
{{- if and (hasKey . "customLabels") (hasKey . "context") -}}
{{- $default := dict "app.kubernetes.io/name" (include "common.names.name" .context) "helm.sh/chart" (include "common.names.chart" .context) "app.kubernetes.io/instance" .context.Release.Name "app.kubernetes.io/managed-by" .context.Release.Service -}}
{{- with .context.Chart.AppVersion -}}
{{- $_ := set $default "app.kubernetes.io/version" . -}}
{{- end -}}
{{ template "common.tplvalues.merge" (dict "values" (list .customLabels $default) "context" .context) }}
{{- else -}}
app.kubernetes.io/name: {{ include "common.names.name" . }}
helm.sh/chart: {{ include "common.names.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- with .Chart.AppVersion }}
app.kubernetes.io/version: {{ . | quote }}
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Labels used on immutable fields such as deploy.spec.selector.matchLabels or svc.spec.selector
{{ include "common.labels.matchLabels" (dict "customLabels" .Values.podLabels "context" $) -}}
We don't want to loop over custom labels appending them to the selector
since it's very likely that it will break deployments, services, etc.
However, it's important to overwrite the standard labels if the user
overwrote them on metadata.labels fields.
*/}}
{{- define "common.labels.matchLabels" -}}
{{- if and (hasKey . "customLabels") (hasKey . "context") -}}
{{ merge (pick (include "common.tplvalues.render" (dict "value" .customLabels "context" .context) | fromYaml) "app.kubernetes.io/name" "app.kubernetes.io/instance") (dict "app.kubernetes.io/name" (include "common.names.name" .context) "app.kubernetes.io/instance" .context.Release.Name ) | toYaml }}
{{- else -}}
app.kubernetes.io/name: {{ include "common.names.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,71 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{- define "common.names.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "common.names.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "common.names.fullname" -}}
{{- if .Values.fullnameOverride -}}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- $name := default .Chart.Name .Values.nameOverride -}}
{{- if contains $name .Release.Name -}}
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Create a default fully qualified dependency name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
Usage:
{{ include "common.names.dependency.fullname" (dict "chartName" "dependency-chart-name" "chartValues" .Values.dependency-chart "context" $) }}
*/}}
{{- define "common.names.dependency.fullname" -}}
{{- if .chartValues.fullnameOverride -}}
{{- .chartValues.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- $name := default .chartName .chartValues.nameOverride -}}
{{- if contains $name .context.Release.Name -}}
{{- .context.Release.Name | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" .context.Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Allow the release namespace to be overridden for multi-namespace deployments in combined charts.
*/}}
{{- define "common.names.namespace" -}}
{{- default .Release.Namespace .Values.namespaceOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create a fully qualified app name adding the installation's namespace.
*/}}
{{- define "common.names.fullname.namespace" -}}
{{- printf "%s-%s" (include "common.names.fullname" .) (include "common.names.namespace" .) | trunc 63 | trimSuffix "-" -}}
{{- end -}}

View File

@@ -0,0 +1,50 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Return a resource request/limit object based on a given preset.
These presets are for basic testing and not meant to be used in production
{{ include "common.resources.preset" (dict "type" "nano") -}}
*/}}
{{- define "common.resources.preset" -}}
{{/* The limits are the requests increased by 50% (except ephemeral-storage and xlarge/2xlarge sizes)*/}}
{{- $presets := dict
"nano" (dict
"requests" (dict "cpu" "100m" "memory" "128Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "150m" "memory" "192Mi" "ephemeral-storage" "2Gi")
)
"micro" (dict
"requests" (dict "cpu" "250m" "memory" "256Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "375m" "memory" "384Mi" "ephemeral-storage" "2Gi")
)
"small" (dict
"requests" (dict "cpu" "500m" "memory" "512Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "750m" "memory" "768Mi" "ephemeral-storage" "2Gi")
)
"medium" (dict
"requests" (dict "cpu" "500m" "memory" "1024Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "750m" "memory" "1536Mi" "ephemeral-storage" "2Gi")
)
"large" (dict
"requests" (dict "cpu" "1.0" "memory" "2048Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "1.5" "memory" "3072Mi" "ephemeral-storage" "2Gi")
)
"xlarge" (dict
"requests" (dict "cpu" "1.0" "memory" "3072Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "3.0" "memory" "6144Mi" "ephemeral-storage" "2Gi")
)
"2xlarge" (dict
"requests" (dict "cpu" "1.0" "memory" "3072Mi" "ephemeral-storage" "50Mi")
"limits" (dict "cpu" "6.0" "memory" "12288Mi" "ephemeral-storage" "2Gi")
)
}}
{{- if hasKey $presets .type -}}
{{- index $presets .type | toYaml -}}
{{- else -}}
{{- printf "ERROR: Preset key '%s' invalid. Allowed values are %s" .type (join "," (keys $presets)) | fail -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,185 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Generate secret name.
Usage:
{{ include "common.secrets.name" (dict "existingSecret" .Values.path.to.the.existingSecret "defaultNameSuffix" "mySuffix" "context" $) }}
Params:
- existingSecret - ExistingSecret/String - Optional. The path to the existing secrets in the values.yaml given by the user
to be used instead of the default one. Allows for it to be of type String (just the secret name) for backwards compatibility.
+info: https://github.com/bitnami/charts/tree/main/bitnami/common#existingsecret
- defaultNameSuffix - String - Optional. It is used only if we have several secrets in the same deployment.
- context - Dict - Required. The context for the template evaluation.
*/}}
{{- define "common.secrets.name" -}}
{{- $name := (include "common.names.fullname" .context) -}}
{{- if .defaultNameSuffix -}}
{{- $name = printf "%s-%s" $name .defaultNameSuffix | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- with .existingSecret -}}
{{- if not (typeIs "string" .) -}}
{{- with .name -}}
{{- $name = . -}}
{{- end -}}
{{- else -}}
{{- $name = . -}}
{{- end -}}
{{- end -}}
{{- printf "%s" $name -}}
{{- end -}}
{{/*
Generate secret key.
Usage:
{{ include "common.secrets.key" (dict "existingSecret" .Values.path.to.the.existingSecret "key" "keyName") }}
Params:
- existingSecret - ExistingSecret/String - Optional. The path to the existing secrets in the values.yaml given by the user
to be used instead of the default one. Allows for it to be of type String (just the secret name) for backwards compatibility.
+info: https://github.com/bitnami/charts/tree/main/bitnami/common#existingsecret
- key - String - Required. Name of the key in the secret.
*/}}
{{- define "common.secrets.key" -}}
{{- $key := .key -}}
{{- if .existingSecret -}}
{{- if not (typeIs "string" .existingSecret) -}}
{{- if .existingSecret.keyMapping -}}
{{- $key = index .existingSecret.keyMapping $.key -}}
{{- end -}}
{{- end }}
{{- end -}}
{{- printf "%s" $key -}}
{{- end -}}
{{/*
Generate secret password or retrieve one if already created.
Usage:
{{ include "common.secrets.passwords.manage" (dict "secret" "secret-name" "key" "keyName" "providedValues" (list "path.to.password1" "path.to.password2") "length" 10 "strong" false "chartName" "chartName" "context" $) }}
Params:
- secret - String - Required - Name of the 'Secret' resource where the password is stored.
- key - String - Required - Name of the key in the secret.
- providedValues - List<String> - Required - The path to the validating value in the values.yaml, e.g: "mysql.password". Will pick first parameter with a defined value.
- length - int - Optional - Length of the generated random password.
- strong - Boolean - Optional - Whether to add symbols to the generated random password.
- chartName - String - Optional - Name of the chart used when said chart is deployed as a subchart.
- context - Context - Required - Parent context.
- failOnNew - Boolean - Optional - Default to true. If set to false, skip errors adding new keys to existing secrets.
- skipB64enc - Boolean - Optional - Default to false. If set to true, no the secret will not be base64 encrypted.
- skipQuote - Boolean - Optional - Default to false. If set to true, no quotes will be added around the secret.
The order in which this function returns a secret password:
1. Already existing 'Secret' resource
(If a 'Secret' resource is found under the name provided to the 'secret' parameter to this function and that 'Secret' resource contains a key with the name passed as the 'key' parameter to this function then the value of this existing secret password will be returned)
2. Password provided via the values.yaml
(If one of the keys passed to the 'providedValues' parameter to this function is a valid path to a key in the values.yaml and has a value, the value of the first key with a value will be returned)
3. Randomly generated secret password
(A new random secret password with the length specified in the 'length' parameter will be generated and returned)
*/}}
{{- define "common.secrets.passwords.manage" -}}
{{- $password := "" }}
{{- $subchart := "" }}
{{- $chartName := default "" .chartName }}
{{- $passwordLength := default 10 .length }}
{{- $providedPasswordKey := include "common.utils.getKeyFromList" (dict "keys" .providedValues "context" $.context) }}
{{- $providedPasswordValue := include "common.utils.getValueFromKey" (dict "key" $providedPasswordKey "context" $.context) }}
{{- $secretData := (lookup "v1" "Secret" (include "common.names.namespace" .context) .secret).data }}
{{- if $secretData }}
{{- if hasKey $secretData .key }}
{{- $password = index $secretData .key | b64dec }}
{{- else if not (eq .failOnNew false) }}
{{- printf "\nPASSWORDS ERROR: The secret \"%s\" does not contain the key \"%s\"\n" .secret .key | fail -}}
{{- end -}}
{{- end }}
{{- if not $password }}
{{- if $providedPasswordValue }}
{{- $password = $providedPasswordValue | toString }}
{{- else }}
{{- if .context.Values.enabled }}
{{- $subchart = $chartName }}
{{- end -}}
{{- if not (eq .failOnNew false) }}
{{- $requiredPassword := dict "valueKey" $providedPasswordKey "secret" .secret "field" .key "subchart" $subchart "context" $.context -}}
{{- $requiredPasswordError := include "common.validations.values.single.empty" $requiredPassword -}}
{{- $passwordValidationErrors := list $requiredPasswordError -}}
{{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $.context) -}}
{{- end }}
{{- if .strong }}
{{- $subStr := list (lower (randAlpha 1)) (randNumeric 1) (upper (randAlpha 1)) | join "_" }}
{{- $password = randAscii $passwordLength }}
{{- $password = regexReplaceAllLiteral "\\W" $password "@" | substr 5 $passwordLength }}
{{- $password = printf "%s%s" $subStr $password | toString | shuffle }}
{{- else }}
{{- $password = randAlphaNum $passwordLength }}
{{- end }}
{{- end -}}
{{- end -}}
{{- if not .skipB64enc }}
{{- $password = $password | b64enc }}
{{- end -}}
{{- if .skipQuote -}}
{{- printf "%s" $password -}}
{{- else -}}
{{- printf "%s" $password | quote -}}
{{- end -}}
{{- end -}}
{{/*
Reuses the value from an existing secret, otherwise sets its value to a default value.
Usage:
{{ include "common.secrets.lookup" (dict "secret" "secret-name" "key" "keyName" "defaultValue" .Values.myValue "context" $) }}
Params:
- secret - String - Required - Name of the 'Secret' resource where the password is stored.
- key - String - Required - Name of the key in the secret.
- defaultValue - String - Required - The path to the validating value in the values.yaml, e.g: "mysql.password". Will pick first parameter with a defined value.
- context - Context - Required - Parent context.
*/}}
{{- define "common.secrets.lookup" -}}
{{- $value := "" -}}
{{- $secretData := (lookup "v1" "Secret" (include "common.names.namespace" .context) .secret).data -}}
{{- if and $secretData (hasKey $secretData .key) -}}
{{- $value = index $secretData .key -}}
{{- else if .defaultValue -}}
{{- $value = .defaultValue | toString | b64enc -}}
{{- end -}}
{{- if $value -}}
{{- printf "%s" $value -}}
{{- end -}}
{{- end -}}
{{/*
Returns whether a previous generated secret already exists
Usage:
{{ include "common.secrets.exists" (dict "secret" "secret-name" "context" $) }}
Params:
- secret - String - Required - Name of the 'Secret' resource where the password is stored.
- context - Context - Required - Parent context.
*/}}
{{- define "common.secrets.exists" -}}
{{- $secret := (lookup "v1" "Secret" (include "common.names.namespace" .context) .secret) }}
{{- if $secret }}
{{- true -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,21 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Return the proper Storage Class
{{ include "common.storage.class" ( dict "persistence" .Values.path.to.the.persistence "global" $) }}
*/}}
{{- define "common.storage.class" -}}
{{- $storageClass := (.global).storageClass | default .persistence.storageClass | default (.global).defaultStorageClass | default "" -}}
{{- if $storageClass -}}
{{- if (eq "-" $storageClass) -}}
{{- printf "storageClassName: \"\"" -}}
{{- else -}}
{{- printf "storageClassName: %s" $storageClass -}}
{{- end -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,38 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Renders a value that contains template perhaps with scope if the scope is present.
Usage:
{{ include "common.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $ ) }}
{{ include "common.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $ "scope" $app ) }}
*/}}
{{- define "common.tplvalues.render" -}}
{{- $value := typeIs "string" .value | ternary .value (.value | toYaml) }}
{{- if contains "{{" (toJson .value) }}
{{- if .scope }}
{{- tpl (cat "{{- with $.RelativeScope -}}" $value "{{- end }}") (merge (dict "RelativeScope" .scope) .context) }}
{{- else }}
{{- tpl $value .context }}
{{- end }}
{{- else }}
{{- $value }}
{{- end }}
{{- end -}}
{{/*
Merge a list of values that contains template after rendering them.
Merge precedence is consistent with http://masterminds.github.io/sprig/dicts.html#merge-mustmerge
Usage:
{{ include "common.tplvalues.merge" ( dict "values" (list .Values.path.to.the.Value1 .Values.path.to.the.Value2) "context" $ ) }}
*/}}
{{- define "common.tplvalues.merge" -}}
{{- $dst := dict -}}
{{- range .values -}}
{{- $dst = include "common.tplvalues.render" (dict "value" . "context" $.context "scope" $.scope) | fromYaml | merge $dst -}}
{{- end -}}
{{ $dst | toYaml }}
{{- end -}}

View File

@@ -0,0 +1,77 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Print instructions to get a secret value.
Usage:
{{ include "common.utils.secret.getvalue" (dict "secret" "secret-name" "field" "secret-value-field" "context" $) }}
*/}}
{{- define "common.utils.secret.getvalue" -}}
{{- $varname := include "common.utils.fieldToEnvVar" . -}}
export {{ $varname }}=$(kubectl get secret --namespace {{ include "common.names.namespace" .context | quote }} {{ .secret }} -o jsonpath="{.data.{{ .field }}}" | base64 -d)
{{- end -}}
{{/*
Build env var name given a field
Usage:
{{ include "common.utils.fieldToEnvVar" dict "field" "my-password" }}
*/}}
{{- define "common.utils.fieldToEnvVar" -}}
{{- $fieldNameSplit := splitList "-" .field -}}
{{- $upperCaseFieldNameSplit := list -}}
{{- range $fieldNameSplit -}}
{{- $upperCaseFieldNameSplit = append $upperCaseFieldNameSplit ( upper . ) -}}
{{- end -}}
{{ join "_" $upperCaseFieldNameSplit }}
{{- end -}}
{{/*
Gets a value from .Values given
Usage:
{{ include "common.utils.getValueFromKey" (dict "key" "path.to.key" "context" $) }}
*/}}
{{- define "common.utils.getValueFromKey" -}}
{{- $splitKey := splitList "." .key -}}
{{- $value := "" -}}
{{- $latestObj := $.context.Values -}}
{{- range $splitKey -}}
{{- if not $latestObj -}}
{{- printf "please review the entire path of '%s' exists in values" $.key | fail -}}
{{- end -}}
{{- $value = ( index $latestObj . ) -}}
{{- $latestObj = $value -}}
{{- end -}}
{{- printf "%v" (default "" $value) -}}
{{- end -}}
{{/*
Returns first .Values key with a defined value or first of the list if all non-defined
Usage:
{{ include "common.utils.getKeyFromList" (dict "keys" (list "path.to.key1" "path.to.key2") "context" $) }}
*/}}
{{- define "common.utils.getKeyFromList" -}}
{{- $key := first .keys -}}
{{- $reverseKeys := reverse .keys }}
{{- range $reverseKeys }}
{{- $value := include "common.utils.getValueFromKey" (dict "key" . "context" $.context ) }}
{{- if $value -}}
{{- $key = . }}
{{- end -}}
{{- end -}}
{{- printf "%s" $key -}}
{{- end -}}
{{/*
Checksum a template at "path" containing a *single* resource (ConfigMap,Secret) for use in pod annotations, excluding the metadata (see #18376).
Usage:
{{ include "common.utils.checksumTemplate" (dict "path" "/configmap.yaml" "context" $) }}
*/}}
{{- define "common.utils.checksumTemplate" -}}
{{- $obj := include (print .context.Template.BasePath .path) .context | fromYaml -}}
{{ omit $obj "apiVersion" "kind" "metadata" | toYaml | sha256sum }}
{{- end -}}

View File

@@ -0,0 +1,109 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Warning about using rolling tag.
Usage:
{{ include "common.warnings.rollingTag" .Values.path.to.the.imageRoot }}
*/}}
{{- define "common.warnings.rollingTag" -}}
{{- if and (contains "bitnami/" .repository) (not (.tag | toString | regexFind "-r\\d+$|sha256:")) }}
WARNING: Rolling tag detected ({{ .repository }}:{{ .tag }}), please note that it is strongly recommended to avoid using rolling tags in a production environment.
+info https://docs.vmware.com/en/VMware-Tanzu-Application-Catalog/services/tutorials/GUID-understand-rolling-tags-containers-index.html
{{- end }}
{{- end -}}
{{/*
Warning about replaced images from the original.
Usage:
{{ include "common.warnings.modifiedImages" (dict "images" (list .Values.path.to.the.imageRoot) "context" $) }}
*/}}
{{- define "common.warnings.modifiedImages" -}}
{{- $affectedImages := list -}}
{{- $printMessage := false -}}
{{- $originalImages := .context.Chart.Annotations.images -}}
{{- range .images -}}
{{- $fullImageName := printf (printf "%s/%s:%s" .registry .repository .tag) -}}
{{- if not (contains $fullImageName $originalImages) }}
{{- $affectedImages = append $affectedImages (printf "%s/%s:%s" .registry .repository .tag) -}}
{{- $printMessage = true -}}
{{- end -}}
{{- end -}}
{{- if $printMessage }}
⚠ SECURITY WARNING: Original containers have been substituted. This Helm chart was designed, tested, and validated on multiple platforms using a specific set of Bitnami and Tanzu Application Catalog containers. Substituting other containers is likely to cause degraded security and performance, broken chart features, and missing environment variables.
Substituted images detected:
{{- range $affectedImages }}
- {{ . }}
{{- end }}
{{- end -}}
{{- end -}}
{{/*
Warning about not setting the resource object in all deployments.
Usage:
{{ include "common.warnings.resources" (dict "sections" (list "path1" "path2") context $) }}
Example:
{{- include "common.warnings.resources" (dict "sections" (list "csiProvider.provider" "server" "volumePermissions" "") "context" $) }}
The list in the example assumes that the following values exist:
- csiProvider.provider.resources
- server.resources
- volumePermissions.resources
- resources
*/}}
{{- define "common.warnings.resources" -}}
{{- $values := .context.Values -}}
{{- $printMessage := false -}}
{{ $affectedSections := list -}}
{{- range .sections -}}
{{- if eq . "" -}}
{{/* Case where the resources section is at the root (one main deployment in the chart) */}}
{{- if not (index $values "resources") -}}
{{- $affectedSections = append $affectedSections "resources" -}}
{{- $printMessage = true -}}
{{- end -}}
{{- else -}}
{{/* Case where the are multiple resources sections (more than one main deployment in the chart) */}}
{{- $keys := split "." . -}}
{{/* We iterate through the different levels until arriving to the resource section. Example: a.b.c.resources */}}
{{- $section := $values -}}
{{- range $keys -}}
{{- $section = index $section . -}}
{{- end -}}
{{- if not (index $section "resources") -}}
{{/* If the section has enabled=false or replicaCount=0, do not include it */}}
{{- if and (hasKey $section "enabled") -}}
{{- if index $section "enabled" -}}
{{/* enabled=true */}}
{{- $affectedSections = append $affectedSections (printf "%s.resources" .) -}}
{{- $printMessage = true -}}
{{- end -}}
{{- else if and (hasKey $section "replicaCount") -}}
{{/* We need a casting to int because number 0 is not treated as an int by default */}}
{{- if (gt (index $section "replicaCount" | int) 0) -}}
{{/* replicaCount > 0 */}}
{{- $affectedSections = append $affectedSections (printf "%s.resources" .) -}}
{{- $printMessage = true -}}
{{- end -}}
{{- else -}}
{{/* Default case, add it to the affected sections */}}
{{- $affectedSections = append $affectedSections (printf "%s.resources" .) -}}
{{- $printMessage = true -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{- if $printMessage }}
WARNING: There are "resources" sections in the chart not set. Using "resourcesPreset" is not recommended for production. For production installations, please set the following values according to your workload needs:
{{- range $affectedSections }}
- {{ . }}
{{- end }}
+info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,77 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate Cassandra required passwords are not empty.
Usage:
{{ include "common.validations.values.cassandra.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
Params:
- secret - String - Required. Name of the secret where Cassandra values are stored, e.g: "cassandra-passwords-secret"
- subchart - Boolean - Optional. Whether Cassandra is used as subchart or not. Default: false
*/}}
{{- define "common.validations.values.cassandra.passwords" -}}
{{- $existingSecret := include "common.cassandra.values.existingSecret" . -}}
{{- $enabled := include "common.cassandra.values.enabled" . -}}
{{- $dbUserPrefix := include "common.cassandra.values.key.dbUser" . -}}
{{- $valueKeyPassword := printf "%s.password" $dbUserPrefix -}}
{{- if and (or (not $existingSecret) (eq $existingSecret "\"\"")) (eq $enabled "true") -}}
{{- $requiredPasswords := list -}}
{{- $requiredPassword := dict "valueKey" $valueKeyPassword "secret" .secret "field" "cassandra-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredPassword -}}
{{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for existingSecret.
Usage:
{{ include "common.cassandra.values.existingSecret" (dict "context" $) }}
Params:
- subchart - Boolean - Optional. Whether Cassandra is used as subchart or not. Default: false
*/}}
{{- define "common.cassandra.values.existingSecret" -}}
{{- if .subchart -}}
{{- .context.Values.cassandra.dbUser.existingSecret | quote -}}
{{- else -}}
{{- .context.Values.dbUser.existingSecret | quote -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled cassandra.
Usage:
{{ include "common.cassandra.values.enabled" (dict "context" $) }}
*/}}
{{- define "common.cassandra.values.enabled" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.cassandra.enabled -}}
{{- else -}}
{{- printf "%v" (not .context.Values.enabled) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for the key dbUser
Usage:
{{ include "common.cassandra.values.key.dbUser" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether Cassandra is used as subchart or not. Default: false
*/}}
{{- define "common.cassandra.values.key.dbUser" -}}
{{- if .subchart -}}
cassandra.dbUser
{{- else -}}
dbUser
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,108 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate MariaDB required passwords are not empty.
Usage:
{{ include "common.validations.values.mariadb.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
Params:
- secret - String - Required. Name of the secret where MariaDB values are stored, e.g: "mysql-passwords-secret"
- subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
*/}}
{{- define "common.validations.values.mariadb.passwords" -}}
{{- $existingSecret := include "common.mariadb.values.auth.existingSecret" . -}}
{{- $enabled := include "common.mariadb.values.enabled" . -}}
{{- $architecture := include "common.mariadb.values.architecture" . -}}
{{- $authPrefix := include "common.mariadb.values.key.auth" . -}}
{{- $valueKeyRootPassword := printf "%s.rootPassword" $authPrefix -}}
{{- $valueKeyUsername := printf "%s.username" $authPrefix -}}
{{- $valueKeyPassword := printf "%s.password" $authPrefix -}}
{{- $valueKeyReplicationPassword := printf "%s.replicationPassword" $authPrefix -}}
{{- if and (or (not $existingSecret) (eq $existingSecret "\"\"")) (eq $enabled "true") -}}
{{- $requiredPasswords := list -}}
{{- $requiredRootPassword := dict "valueKey" $valueKeyRootPassword "secret" .secret "field" "mariadb-root-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredRootPassword -}}
{{- $valueUsername := include "common.utils.getValueFromKey" (dict "key" $valueKeyUsername "context" .context) }}
{{- if not (empty $valueUsername) -}}
{{- $requiredPassword := dict "valueKey" $valueKeyPassword "secret" .secret "field" "mariadb-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredPassword -}}
{{- end -}}
{{- if (eq $architecture "replication") -}}
{{- $requiredReplicationPassword := dict "valueKey" $valueKeyReplicationPassword "secret" .secret "field" "mariadb-replication-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredReplicationPassword -}}
{{- end -}}
{{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for existingSecret.
Usage:
{{ include "common.mariadb.values.auth.existingSecret" (dict "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
*/}}
{{- define "common.mariadb.values.auth.existingSecret" -}}
{{- if .subchart -}}
{{- .context.Values.mariadb.auth.existingSecret | quote -}}
{{- else -}}
{{- .context.Values.auth.existingSecret | quote -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled mariadb.
Usage:
{{ include "common.mariadb.values.enabled" (dict "context" $) }}
*/}}
{{- define "common.mariadb.values.enabled" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.mariadb.enabled -}}
{{- else -}}
{{- printf "%v" (not .context.Values.enabled) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for architecture
Usage:
{{ include "common.mariadb.values.architecture" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
*/}}
{{- define "common.mariadb.values.architecture" -}}
{{- if .subchart -}}
{{- .context.Values.mariadb.architecture -}}
{{- else -}}
{{- .context.Values.architecture -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for the key auth
Usage:
{{ include "common.mariadb.values.key.auth" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MariaDB is used as subchart or not. Default: false
*/}}
{{- define "common.mariadb.values.key.auth" -}}
{{- if .subchart -}}
mariadb.auth
{{- else -}}
auth
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,113 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate MongoDB&reg; required passwords are not empty.
Usage:
{{ include "common.validations.values.mongodb.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
Params:
- secret - String - Required. Name of the secret where MongoDB&reg; values are stored, e.g: "mongodb-passwords-secret"
- subchart - Boolean - Optional. Whether MongoDB&reg; is used as subchart or not. Default: false
*/}}
{{- define "common.validations.values.mongodb.passwords" -}}
{{- $existingSecret := include "common.mongodb.values.auth.existingSecret" . -}}
{{- $enabled := include "common.mongodb.values.enabled" . -}}
{{- $authPrefix := include "common.mongodb.values.key.auth" . -}}
{{- $architecture := include "common.mongodb.values.architecture" . -}}
{{- $valueKeyRootPassword := printf "%s.rootPassword" $authPrefix -}}
{{- $valueKeyUsername := printf "%s.username" $authPrefix -}}
{{- $valueKeyDatabase := printf "%s.database" $authPrefix -}}
{{- $valueKeyPassword := printf "%s.password" $authPrefix -}}
{{- $valueKeyReplicaSetKey := printf "%s.replicaSetKey" $authPrefix -}}
{{- $valueKeyAuthEnabled := printf "%s.enabled" $authPrefix -}}
{{- $authEnabled := include "common.utils.getValueFromKey" (dict "key" $valueKeyAuthEnabled "context" .context) -}}
{{- if and (or (not $existingSecret) (eq $existingSecret "\"\"")) (eq $enabled "true") (eq $authEnabled "true") -}}
{{- $requiredPasswords := list -}}
{{- $requiredRootPassword := dict "valueKey" $valueKeyRootPassword "secret" .secret "field" "mongodb-root-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredRootPassword -}}
{{- $valueUsername := include "common.utils.getValueFromKey" (dict "key" $valueKeyUsername "context" .context) }}
{{- $valueDatabase := include "common.utils.getValueFromKey" (dict "key" $valueKeyDatabase "context" .context) }}
{{- if and $valueUsername $valueDatabase -}}
{{- $requiredPassword := dict "valueKey" $valueKeyPassword "secret" .secret "field" "mongodb-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredPassword -}}
{{- end -}}
{{- if (eq $architecture "replicaset") -}}
{{- $requiredReplicaSetKey := dict "valueKey" $valueKeyReplicaSetKey "secret" .secret "field" "mongodb-replica-set-key" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredReplicaSetKey -}}
{{- end -}}
{{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for existingSecret.
Usage:
{{ include "common.mongodb.values.auth.existingSecret" (dict "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MongoDb is used as subchart or not. Default: false
*/}}
{{- define "common.mongodb.values.auth.existingSecret" -}}
{{- if .subchart -}}
{{- .context.Values.mongodb.auth.existingSecret | quote -}}
{{- else -}}
{{- .context.Values.auth.existingSecret | quote -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled mongodb.
Usage:
{{ include "common.mongodb.values.enabled" (dict "context" $) }}
*/}}
{{- define "common.mongodb.values.enabled" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.mongodb.enabled -}}
{{- else -}}
{{- printf "%v" (not .context.Values.enabled) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for the key auth
Usage:
{{ include "common.mongodb.values.key.auth" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MongoDB&reg; is used as subchart or not. Default: false
*/}}
{{- define "common.mongodb.values.key.auth" -}}
{{- if .subchart -}}
mongodb.auth
{{- else -}}
auth
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for architecture
Usage:
{{ include "common.mongodb.values.architecture" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MongoDB&reg; is used as subchart or not. Default: false
*/}}
{{- define "common.mongodb.values.architecture" -}}
{{- if .subchart -}}
{{- .context.Values.mongodb.architecture -}}
{{- else -}}
{{- .context.Values.architecture -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,108 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate MySQL required passwords are not empty.
Usage:
{{ include "common.validations.values.mysql.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
Params:
- secret - String - Required. Name of the secret where MySQL values are stored, e.g: "mysql-passwords-secret"
- subchart - Boolean - Optional. Whether MySQL is used as subchart or not. Default: false
*/}}
{{- define "common.validations.values.mysql.passwords" -}}
{{- $existingSecret := include "common.mysql.values.auth.existingSecret" . -}}
{{- $enabled := include "common.mysql.values.enabled" . -}}
{{- $architecture := include "common.mysql.values.architecture" . -}}
{{- $authPrefix := include "common.mysql.values.key.auth" . -}}
{{- $valueKeyRootPassword := printf "%s.rootPassword" $authPrefix -}}
{{- $valueKeyUsername := printf "%s.username" $authPrefix -}}
{{- $valueKeyPassword := printf "%s.password" $authPrefix -}}
{{- $valueKeyReplicationPassword := printf "%s.replicationPassword" $authPrefix -}}
{{- if and (or (not $existingSecret) (eq $existingSecret "\"\"")) (eq $enabled "true") -}}
{{- $requiredPasswords := list -}}
{{- $requiredRootPassword := dict "valueKey" $valueKeyRootPassword "secret" .secret "field" "mysql-root-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredRootPassword -}}
{{- $valueUsername := include "common.utils.getValueFromKey" (dict "key" $valueKeyUsername "context" .context) }}
{{- if not (empty $valueUsername) -}}
{{- $requiredPassword := dict "valueKey" $valueKeyPassword "secret" .secret "field" "mysql-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredPassword -}}
{{- end -}}
{{- if (eq $architecture "replication") -}}
{{- $requiredReplicationPassword := dict "valueKey" $valueKeyReplicationPassword "secret" .secret "field" "mysql-replication-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredReplicationPassword -}}
{{- end -}}
{{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for existingSecret.
Usage:
{{ include "common.mysql.values.auth.existingSecret" (dict "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MySQL is used as subchart or not. Default: false
*/}}
{{- define "common.mysql.values.auth.existingSecret" -}}
{{- if .subchart -}}
{{- .context.Values.mysql.auth.existingSecret | quote -}}
{{- else -}}
{{- .context.Values.auth.existingSecret | quote -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled mysql.
Usage:
{{ include "common.mysql.values.enabled" (dict "context" $) }}
*/}}
{{- define "common.mysql.values.enabled" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.mysql.enabled -}}
{{- else -}}
{{- printf "%v" (not .context.Values.enabled) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for architecture
Usage:
{{ include "common.mysql.values.architecture" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MySQL is used as subchart or not. Default: false
*/}}
{{- define "common.mysql.values.architecture" -}}
{{- if .subchart -}}
{{- .context.Values.mysql.architecture -}}
{{- else -}}
{{- .context.Values.architecture -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for the key auth
Usage:
{{ include "common.mysql.values.key.auth" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether MySQL is used as subchart or not. Default: false
*/}}
{{- define "common.mysql.values.key.auth" -}}
{{- if .subchart -}}
mysql.auth
{{- else -}}
auth
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,134 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate PostgreSQL required passwords are not empty.
Usage:
{{ include "common.validations.values.postgresql.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
Params:
- secret - String - Required. Name of the secret where postgresql values are stored, e.g: "postgresql-passwords-secret"
- subchart - Boolean - Optional. Whether postgresql is used as subchart or not. Default: false
*/}}
{{- define "common.validations.values.postgresql.passwords" -}}
{{- $existingSecret := include "common.postgresql.values.existingSecret" . -}}
{{- $enabled := include "common.postgresql.values.enabled" . -}}
{{- $valueKeyPostgresqlPassword := include "common.postgresql.values.key.postgressPassword" . -}}
{{- $valueKeyPostgresqlReplicationEnabled := include "common.postgresql.values.key.replicationPassword" . -}}
{{- if and (or (not $existingSecret) (eq $existingSecret "\"\"")) (eq $enabled "true") -}}
{{- $requiredPasswords := list -}}
{{- $requiredPostgresqlPassword := dict "valueKey" $valueKeyPostgresqlPassword "secret" .secret "field" "postgresql-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredPostgresqlPassword -}}
{{- $enabledReplication := include "common.postgresql.values.enabled.replication" . -}}
{{- if (eq $enabledReplication "true") -}}
{{- $requiredPostgresqlReplicationPassword := dict "valueKey" $valueKeyPostgresqlReplicationEnabled "secret" .secret "field" "postgresql-replication-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredPostgresqlReplicationPassword -}}
{{- end -}}
{{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to decide whether evaluate global values.
Usage:
{{ include "common.postgresql.values.use.global" (dict "key" "key-of-global" "context" $) }}
Params:
- key - String - Required. Field to be evaluated within global, e.g: "existingSecret"
*/}}
{{- define "common.postgresql.values.use.global" -}}
{{- if .context.Values.global -}}
{{- if .context.Values.global.postgresql -}}
{{- index .context.Values.global.postgresql .key | quote -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for existingSecret.
Usage:
{{ include "common.postgresql.values.existingSecret" (dict "context" $) }}
*/}}
{{- define "common.postgresql.values.existingSecret" -}}
{{- $globalValue := include "common.postgresql.values.use.global" (dict "key" "existingSecret" "context" .context) -}}
{{- if .subchart -}}
{{- default (.context.Values.postgresql.existingSecret | quote) $globalValue -}}
{{- else -}}
{{- default (.context.Values.existingSecret | quote) $globalValue -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled postgresql.
Usage:
{{ include "common.postgresql.values.enabled" (dict "context" $) }}
*/}}
{{- define "common.postgresql.values.enabled" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.postgresql.enabled -}}
{{- else -}}
{{- printf "%v" (not .context.Values.enabled) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for the key postgressPassword.
Usage:
{{ include "common.postgresql.values.key.postgressPassword" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether postgresql is used as subchart or not. Default: false
*/}}
{{- define "common.postgresql.values.key.postgressPassword" -}}
{{- $globalValue := include "common.postgresql.values.use.global" (dict "key" "postgresqlUsername" "context" .context) -}}
{{- if not $globalValue -}}
{{- if .subchart -}}
postgresql.postgresqlPassword
{{- else -}}
postgresqlPassword
{{- end -}}
{{- else -}}
global.postgresql.postgresqlPassword
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled.replication.
Usage:
{{ include "common.postgresql.values.enabled.replication" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether postgresql is used as subchart or not. Default: false
*/}}
{{- define "common.postgresql.values.enabled.replication" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.postgresql.replication.enabled -}}
{{- else -}}
{{- printf "%v" .context.Values.replication.enabled -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for the key replication.password.
Usage:
{{ include "common.postgresql.values.key.replicationPassword" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether postgresql is used as subchart or not. Default: false
*/}}
{{- define "common.postgresql.values.key.replicationPassword" -}}
{{- if .subchart -}}
postgresql.replication.password
{{- else -}}
replication.password
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,81 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate Redis&reg; required passwords are not empty.
Usage:
{{ include "common.validations.values.redis.passwords" (dict "secret" "secretName" "subchart" false "context" $) }}
Params:
- secret - String - Required. Name of the secret where redis values are stored, e.g: "redis-passwords-secret"
- subchart - Boolean - Optional. Whether redis is used as subchart or not. Default: false
*/}}
{{- define "common.validations.values.redis.passwords" -}}
{{- $enabled := include "common.redis.values.enabled" . -}}
{{- $valueKeyPrefix := include "common.redis.values.keys.prefix" . -}}
{{- $standarizedVersion := include "common.redis.values.standarized.version" . }}
{{- $existingSecret := ternary (printf "%s%s" $valueKeyPrefix "auth.existingSecret") (printf "%s%s" $valueKeyPrefix "existingSecret") (eq $standarizedVersion "true") }}
{{- $existingSecretValue := include "common.utils.getValueFromKey" (dict "key" $existingSecret "context" .context) }}
{{- $valueKeyRedisPassword := ternary (printf "%s%s" $valueKeyPrefix "auth.password") (printf "%s%s" $valueKeyPrefix "password") (eq $standarizedVersion "true") }}
{{- $valueKeyRedisUseAuth := ternary (printf "%s%s" $valueKeyPrefix "auth.enabled") (printf "%s%s" $valueKeyPrefix "usePassword") (eq $standarizedVersion "true") }}
{{- if and (or (not $existingSecret) (eq $existingSecret "\"\"")) (eq $enabled "true") -}}
{{- $requiredPasswords := list -}}
{{- $useAuth := include "common.utils.getValueFromKey" (dict "key" $valueKeyRedisUseAuth "context" .context) -}}
{{- if eq $useAuth "true" -}}
{{- $requiredRedisPassword := dict "valueKey" $valueKeyRedisPassword "secret" .secret "field" "redis-password" -}}
{{- $requiredPasswords = append $requiredPasswords $requiredRedisPassword -}}
{{- end -}}
{{- include "common.validations.values.multiple.empty" (dict "required" $requiredPasswords "context" .context) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right value for enabled redis.
Usage:
{{ include "common.redis.values.enabled" (dict "context" $) }}
*/}}
{{- define "common.redis.values.enabled" -}}
{{- if .subchart -}}
{{- printf "%v" .context.Values.redis.enabled -}}
{{- else -}}
{{- printf "%v" (not .context.Values.enabled) -}}
{{- end -}}
{{- end -}}
{{/*
Auxiliary function to get the right prefix path for the values
Usage:
{{ include "common.redis.values.key.prefix" (dict "subchart" "true" "context" $) }}
Params:
- subchart - Boolean - Optional. Whether redis is used as subchart or not. Default: false
*/}}
{{- define "common.redis.values.keys.prefix" -}}
{{- if .subchart -}}redis.{{- else -}}{{- end -}}
{{- end -}}
{{/*
Checks whether the redis chart's includes the standarizations (version >= 14)
Usage:
{{ include "common.redis.values.standarized.version" (dict "context" $) }}
*/}}
{{- define "common.redis.values.standarized.version" -}}
{{- $standarizedAuth := printf "%s%s" (include "common.redis.values.keys.prefix" .) "auth" -}}
{{- $standarizedAuthValues := include "common.utils.getValueFromKey" (dict "key" $standarizedAuth "context" .context) }}
{{- if $standarizedAuthValues -}}
{{- true -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,51 @@
{{/*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Validate values must not be empty.
Usage:
{{- $validateValueConf00 := (dict "valueKey" "path.to.value" "secret" "secretName" "field" "password-00") -}}
{{- $validateValueConf01 := (dict "valueKey" "path.to.value" "secret" "secretName" "field" "password-01") -}}
{{ include "common.validations.values.empty" (dict "required" (list $validateValueConf00 $validateValueConf01) "context" $) }}
Validate value params:
- valueKey - String - Required. The path to the validating value in the values.yaml, e.g: "mysql.password"
- secret - String - Optional. Name of the secret where the validating value is generated/stored, e.g: "mysql-passwords-secret"
- field - String - Optional. Name of the field in the secret data, e.g: "mysql-password"
*/}}
{{- define "common.validations.values.multiple.empty" -}}
{{- range .required -}}
{{- include "common.validations.values.single.empty" (dict "valueKey" .valueKey "secret" .secret "field" .field "context" $.context) -}}
{{- end -}}
{{- end -}}
{{/*
Validate a value must not be empty.
Usage:
{{ include "common.validations.value.empty" (dict "valueKey" "mariadb.password" "secret" "secretName" "field" "my-password" "subchart" "subchart" "context" $) }}
Validate value params:
- valueKey - String - Required. The path to the validating value in the values.yaml, e.g: "mysql.password"
- secret - String - Optional. Name of the secret where the validating value is generated/stored, e.g: "mysql-passwords-secret"
- field - String - Optional. Name of the field in the secret data, e.g: "mysql-password"
- subchart - String - Optional - Name of the subchart that the validated password is part of.
*/}}
{{- define "common.validations.values.single.empty" -}}
{{- $value := include "common.utils.getValueFromKey" (dict "key" .valueKey "context" .context) }}
{{- $subchart := ternary "" (printf "%s." .subchart) (empty .subchart) }}
{{- if not $value -}}
{{- $varname := "my-value" -}}
{{- $getCurrentValue := "" -}}
{{- if and .secret .field -}}
{{- $varname = include "common.utils.fieldToEnvVar" . -}}
{{- $getCurrentValue = printf " To get the current value:\n\n %s\n" (include "common.utils.secret.getvalue" .) -}}
{{- end -}}
{{- printf "\n '%s' must not be empty, please add '--set %s%s=$%s' to the command.%s" .valueKey $subchart .valueKey $varname $getCurrentValue -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,8 @@
# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0
## bitnami/common
## It is required by CI/CD tools and processes.
## @skip exampleValue
##
exampleValue: common-chart

View File

@@ -0,0 +1 @@
fullnameOverride: vertical-pod-autoscaler

View File

@@ -0,0 +1,228 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: verticalpodautoscalercheckpoints.autoscaling.k8s.io
labels:
{{- include "vertical-pod-autoscaler.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes/kubernetes/pull/63797
controller-gen.kubebuilder.io/version: v0.16.5
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
group: autoscaling.k8s.io
names:
kind: VerticalPodAutoscalerCheckpoint
listKind: VerticalPodAutoscalerCheckpointList
plural: verticalpodautoscalercheckpoints
shortNames:
- vpacheckpoint
singular: verticalpodautoscalercheckpoint
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
description: |-
VerticalPodAutoscalerCheckpoint is the checkpoint of the internal state of VPA that
is used for recovery after recommender's restart.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: |-
Specification of the checkpoint.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
properties:
containerName:
description: Name of the checkpointed container.
type: string
vpaObjectName:
description: Name of the VPA object that stored VerticalPodAutoscalerCheckpoint
object.
type: string
type: object
status:
description: Data of the checkpoint.
properties:
cpuHistogram:
description: Checkpoint of histogram for consumption of CPU.
properties:
bucketWeights:
description: Map from bucket index to bucket weight.
type: object
x-kubernetes-preserve-unknown-fields: true
referenceTimestamp:
description: Reference timestamp for samples collected within
this histogram.
format: date-time
nullable: true
type: string
totalWeight:
description: Sum of samples to be used as denominator for weights
from BucketWeights.
type: number
type: object
firstSampleStart:
description: Timestamp of the fist sample from the histograms.
format: date-time
nullable: true
type: string
lastSampleStart:
description: Timestamp of the last sample from the histograms.
format: date-time
nullable: true
type: string
lastUpdateTime:
description: The time when the status was last refreshed.
format: date-time
nullable: true
type: string
memoryHistogram:
description: Checkpoint of histogram for consumption of memory.
properties:
bucketWeights:
description: Map from bucket index to bucket weight.
type: object
x-kubernetes-preserve-unknown-fields: true
referenceTimestamp:
description: Reference timestamp for samples collected within
this histogram.
format: date-time
nullable: true
type: string
totalWeight:
description: Sum of samples to be used as denominator for weights
from BucketWeights.
type: number
type: object
totalSamplesCount:
description: Total number of samples in the histograms.
type: integer
version:
description: Version of the format of the stored data.
type: string
type: object
type: object
served: true
storage: true
- name: v1beta2
schema:
openAPIV3Schema:
description: |-
VerticalPodAutoscalerCheckpoint is the checkpoint of the internal state of VPA that
is used for recovery after recommender's restart.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: |-
Specification of the checkpoint.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
properties:
containerName:
description: Name of the checkpointed container.
type: string
vpaObjectName:
description: Name of the VPA object that stored VerticalPodAutoscalerCheckpoint
object.
type: string
type: object
status:
description: Data of the checkpoint.
properties:
cpuHistogram:
description: Checkpoint of histogram for consumption of CPU.
properties:
bucketWeights:
description: Map from bucket index to bucket weight.
type: object
x-kubernetes-preserve-unknown-fields: true
referenceTimestamp:
description: Reference timestamp for samples collected within
this histogram.
format: date-time
nullable: true
type: string
totalWeight:
description: Sum of samples to be used as denominator for weights
from BucketWeights.
type: number
type: object
firstSampleStart:
description: Timestamp of the fist sample from the histograms.
format: date-time
nullable: true
type: string
lastSampleStart:
description: Timestamp of the last sample from the histograms.
format: date-time
nullable: true
type: string
lastUpdateTime:
description: The time when the status was last refreshed.
format: date-time
nullable: true
type: string
memoryHistogram:
description: Checkpoint of histogram for consumption of memory.
properties:
bucketWeights:
description: Map from bucket index to bucket weight.
type: object
x-kubernetes-preserve-unknown-fields: true
referenceTimestamp:
description: Reference timestamp for samples collected within
this histogram.
format: date-time
nullable: true
type: string
totalWeight:
description: Sum of samples to be used as denominator for weights
from BucketWeights.
type: number
type: object
totalSamplesCount:
description: Total number of samples in the histograms.
type: integer
version:
description: Version of the format of the stored data.
type: string
type: object
type: object
served: false
storage: false

View File

@@ -0,0 +1,620 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: verticalpodautoscalers.autoscaling.k8s.io
labels:
{{- include "vertical-pod-autoscaler.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes/kubernetes/pull/63797
controller-gen.kubebuilder.io/version: v0.16.5
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
group: autoscaling.k8s.io
names:
kind: VerticalPodAutoscaler
listKind: VerticalPodAutoscalerList
plural: verticalpodautoscalers
shortNames:
- vpa
singular: verticalpodautoscaler
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .spec.updatePolicy.updateMode
name: Mode
type: string
- jsonPath: .status.recommendation.containerRecommendations[0].target.cpu
name: CPU
type: string
- jsonPath: .status.recommendation.containerRecommendations[0].target.memory
name: Mem
type: string
- jsonPath: .status.conditions[?(@.type=='RecommendationProvided')].status
name: Provided
type: string
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1
schema:
openAPIV3Schema:
description: |-
VerticalPodAutoscaler is the configuration for a vertical pod
autoscaler, which automatically manages pod resources based on historical and
real time resource utilization.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: |-
Specification of the behavior of the autoscaler.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
properties:
recommenders:
description: |-
Recommender responsible for generating recommendation for this object.
List should be empty (then the default recommender will generate the
recommendation) or contain exactly one recommender.
items:
description: |-
VerticalPodAutoscalerRecommenderSelector points to a specific Vertical Pod Autoscaler recommender.
In the future it might pass parameters to the recommender.
properties:
name:
description: Name of the recommender responsible for generating
recommendation for this object.
type: string
required:
- name
type: object
type: array
resourcePolicy:
description: |-
Controls how the autoscaler computes recommended resources.
The resource policy may be used to set constraints on the recommendations
for individual containers.
If any individual containers need to be excluded from getting the VPA recommendations, then
it must be disabled explicitly by setting mode to "Off" under containerPolicies.
If not specified, the autoscaler computes recommended resources for all containers in the pod,
without additional constraints.
properties:
containerPolicies:
description: Per-container resource policies.
items:
description: |-
ContainerResourcePolicy controls how autoscaler computes the recommended
resources for a specific container.
properties:
containerName:
description: |-
Name of the container or DefaultContainerResourcePolicy, in which
case the policy is used by the containers that don't have their own
policy specified.
type: string
controlledResources:
description: |-
Specifies the type of recommendations that will be computed
(and possibly applied) by VPA.
If not specified, the default of [ResourceCPU, ResourceMemory] will be used.
items:
description: ResourceName is the name identifying various
resources in a ResourceList.
type: string
type: array
controlledValues:
description: |-
Specifies which resource values should be controlled.
The default is "RequestsAndLimits".
enum:
- RequestsAndLimits
- RequestsOnly
type: string
maxAllowed:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Specifies the maximum amount of resources that will be recommended
for the container. The default is no maximum.
type: object
minAllowed:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Specifies the minimal amount of resources that will be recommended
for the container. The default is no minimum.
type: object
mode:
description: Whether autoscaler is enabled for the container.
The default is "Auto".
enum:
- Auto
- "Off"
type: string
type: object
type: array
type: object
targetRef:
description: |-
TargetRef points to the controller managing the set of pods for the
autoscaler to control - e.g. Deployment, StatefulSet. VerticalPodAutoscaler
can be targeted at controller implementing scale subresource (the pod set is
retrieved from the controller's ScaleStatus) or some well known controllers
(e.g. for DaemonSet the pod set is read from the controller's spec).
If VerticalPodAutoscaler cannot use specified target it will report
ConfigUnsupported condition.
Note that VerticalPodAutoscaler does not require full implementation
of scale subresource - it will not use it to modify the replica count.
The only thing retrieved is a label selector matching pods grouped by
the target resource.
properties:
apiVersion:
description: apiVersion is the API version of the referent
type: string
kind:
description: 'kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
required:
- kind
- name
type: object
x-kubernetes-map-type: atomic
updatePolicy:
description: |-
Describes the rules on how changes are applied to the pods.
If not specified, all fields in the `PodUpdatePolicy` are set to their
default values.
properties:
evictionRequirements:
description: |-
EvictionRequirements is a list of EvictionRequirements that need to
evaluate to true in order for a Pod to be evicted. If more than one
EvictionRequirement is specified, all of them need to be fulfilled to allow eviction.
items:
description: |-
EvictionRequirement defines a single condition which needs to be true in
order to evict a Pod
properties:
changeRequirement:
description: EvictionChangeRequirement refers to the relationship
between the new target recommendation for a Pod and its
current requests, what kind of change is necessary for
the Pod to be evicted
enum:
- TargetHigherThanRequests
- TargetLowerThanRequests
type: string
resources:
description: |-
Resources is a list of one or more resources that the condition applies
to. If more than one resource is given, the EvictionRequirement is fulfilled
if at least one resource meets `changeRequirement`.
items:
description: ResourceName is the name identifying various
resources in a ResourceList.
type: string
type: array
required:
- changeRequirement
- resources
type: object
type: array
minReplicas:
description: |-
Minimal number of replicas which need to be alive for Updater to attempt
pod eviction (pending other checks like PDB). Only positive values are
allowed. Overrides global '--min-replicas' flag.
format: int32
type: integer
updateMode:
description: |-
Controls when autoscaler applies changes to the pod resources.
The default is 'Auto'.
enum:
- "Off"
- Initial
- Recreate
- Auto
type: string
type: object
required:
- targetRef
type: object
status:
description: Current information about the autoscaler.
properties:
conditions:
description: |-
Conditions is the set of conditions required for this autoscaler to scale its target,
and indicates whether or not those conditions are met.
items:
description: |-
VerticalPodAutoscalerCondition describes the state of
a VerticalPodAutoscaler at a certain point.
properties:
lastTransitionTime:
description: |-
lastTransitionTime is the last time the condition transitioned from
one status to another
format: date-time
type: string
message:
description: |-
message is a human-readable explanation containing details about
the transition
type: string
reason:
description: reason is the reason for the condition's last transition.
type: string
status:
description: status is the status of the condition (True, False,
Unknown)
type: string
type:
description: type describes the current condition
type: string
required:
- status
- type
type: object
type: array
recommendation:
description: |-
The most recently computed amount of resources recommended by the
autoscaler for the controlled pods.
properties:
containerRecommendations:
description: Resources recommended by the autoscaler for each
container.
items:
description: |-
RecommendedContainerResources is the recommendation of resources computed by
autoscaler for a specific container. Respects the container resource policy
if present in the spec. In particular the recommendation is not produced for
containers with `ContainerScalingMode` set to 'Off'.
properties:
containerName:
description: Name of the container.
type: string
lowerBound:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Minimum recommended amount of resources. Observes ContainerResourcePolicy.
This amount is not guaranteed to be sufficient for the application to operate in a stable way, however
running with less resources is likely to have significant impact on performance/availability.
type: object
target:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: Recommended amount of resources. Observes ContainerResourcePolicy.
type: object
uncappedTarget:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
The most recent recommended resources target computed by the autoscaler
for the controlled pods, based only on actual resource usage, not taking
into account the ContainerResourcePolicy.
May differ from the Recommendation if the actual resource usage causes
the target to violate the ContainerResourcePolicy (lower than MinAllowed
or higher that MaxAllowed).
Used only as status indication, will not affect actual resource assignment.
type: object
upperBound:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Maximum recommended amount of resources. Observes ContainerResourcePolicy.
Any resources allocated beyond this value are likely wasted. This value may be larger than the maximum
amount of application is actually capable of consuming.
type: object
required:
- target
type: object
type: array
type: object
type: object
required:
- spec
type: object
served: true
storage: true
subresources:
status: {}
- deprecated: true
deprecationWarning: autoscaling.k8s.io/v1beta2 API is deprecated
name: v1beta2
schema:
openAPIV3Schema:
description: |-
VerticalPodAutoscaler is the configuration for a vertical pod
autoscaler, which automatically manages pod resources based on historical and
real time resource utilization.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: |-
Specification of the behavior of the autoscaler.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
properties:
resourcePolicy:
description: |-
Controls how the autoscaler computes recommended resources.
The resource policy may be used to set constraints on the recommendations
for individual containers. If not specified, the autoscaler computes recommended
resources for all containers in the pod, without additional constraints.
properties:
containerPolicies:
description: Per-container resource policies.
items:
description: |-
ContainerResourcePolicy controls how autoscaler computes the recommended
resources for a specific container.
properties:
containerName:
description: |-
Name of the container or DefaultContainerResourcePolicy, in which
case the policy is used by the containers that don't have their own
policy specified.
type: string
maxAllowed:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Specifies the maximum amount of resources that will be recommended
for the container. The default is no maximum.
type: object
minAllowed:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Specifies the minimal amount of resources that will be recommended
for the container. The default is no minimum.
type: object
mode:
description: Whether autoscaler is enabled for the container.
The default is "Auto".
enum:
- Auto
- "Off"
type: string
type: object
type: array
type: object
targetRef:
description: |-
TargetRef points to the controller managing the set of pods for the
autoscaler to control - e.g. Deployment, StatefulSet. VerticalPodAutoscaler
can be targeted at controller implementing scale subresource (the pod set is
retrieved from the controller's ScaleStatus) or some well known controllers
(e.g. for DaemonSet the pod set is read from the controller's spec).
If VerticalPodAutoscaler cannot use specified target it will report
ConfigUnsupported condition.
Note that VerticalPodAutoscaler does not require full implementation
of scale subresource - it will not use it to modify the replica count.
The only thing retrieved is a label selector matching pods grouped by
the target resource.
properties:
apiVersion:
description: apiVersion is the API version of the referent
type: string
kind:
description: 'kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
name:
description: 'name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
type: string
required:
- kind
- name
type: object
x-kubernetes-map-type: atomic
updatePolicy:
description: |-
Describes the rules on how changes are applied to the pods.
If not specified, all fields in the `PodUpdatePolicy` are set to their
default values.
properties:
updateMode:
description: |-
Controls when autoscaler applies changes to the pod resources.
The default is 'Auto'.
enum:
- "Off"
- Initial
- Recreate
- Auto
type: string
type: object
required:
- targetRef
type: object
status:
description: Current information about the autoscaler.
properties:
conditions:
description: |-
Conditions is the set of conditions required for this autoscaler to scale its target,
and indicates whether or not those conditions are met.
items:
description: |-
VerticalPodAutoscalerCondition describes the state of
a VerticalPodAutoscaler at a certain point.
properties:
lastTransitionTime:
description: |-
lastTransitionTime is the last time the condition transitioned from
one status to another
format: date-time
type: string
message:
description: |-
message is a human-readable explanation containing details about
the transition
type: string
reason:
description: reason is the reason for the condition's last transition.
type: string
status:
description: status is the status of the condition (True, False,
Unknown)
type: string
type:
description: type describes the current condition
type: string
required:
- status
- type
type: object
type: array
recommendation:
description: |-
The most recently computed amount of resources recommended by the
autoscaler for the controlled pods.
properties:
containerRecommendations:
description: Resources recommended by the autoscaler for each
container.
items:
description: |-
RecommendedContainerResources is the recommendation of resources computed by
autoscaler for a specific container. Respects the container resource policy
if present in the spec. In particular the recommendation is not produced for
containers with `ContainerScalingMode` set to 'Off'.
properties:
containerName:
description: Name of the container.
type: string
lowerBound:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Minimum recommended amount of resources. Observes ContainerResourcePolicy.
This amount is not guaranteed to be sufficient for the application to operate in a stable way, however
running with less resources is likely to have significant impact on performance/availability.
type: object
target:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: Recommended amount of resources. Observes ContainerResourcePolicy.
type: object
uncappedTarget:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
The most recent recommended resources target computed by the autoscaler
for the controlled pods, based only on actual resource usage, not taking
into account the ContainerResourcePolicy.
May differ from the Recommendation if the actual resource usage causes
the target to violate the ContainerResourcePolicy (lower than MinAllowed
or higher that MaxAllowed).
Used only as status indication, will not affect actual resource assignment.
type: object
upperBound:
additionalProperties:
anyOf:
- type: integer
- type: string
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
description: |-
Maximum recommended amount of resources. Observes ContainerResourcePolicy.
Any resources allocated beyond this value are likely wasted. This value may be larger than the maximum
amount of application is actually capable of consuming.
type: object
required:
- target
type: object
type: array
type: object
type: object
required:
- spec
type: object
served: false
storage: false
subresources:
status: {}

View File

@@ -0,0 +1,5 @@
** Please be patient while the chart is being deployed **
1. Get the application status by running the command:
$ helm status {{ .Release.Name }} --namespace {{ .Release.Namespace }}

View File

@@ -0,0 +1,52 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{- define "vertical-pod-autoscaler.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "vertical-pod-autoscaler.fullname" -}}
{{- if .Values.fullnameOverride -}}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- $name := default .Chart.Name .Values.nameOverride -}}
{{- if contains $name .Release.Name -}}
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "vertical-pod-autoscaler.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Common labels
*/}}
{{- define "vertical-pod-autoscaler.labels" -}}
helm.sh/chart: {{ include "vertical-pod-autoscaler.chart" . }}
{{ include "vertical-pod-autoscaler.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end -}}
{{/*
Selector labels
*/}}
{{- define "vertical-pod-autoscaler.selectorLabels" -}}
app.kubernetes.io/name: {{ include "vertical-pod-autoscaler.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end -}}

View File

@@ -0,0 +1,59 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "vertical-pod-autoscaler.admissionController.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.fullname" .) "admission-controller" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create a default fully qualified metrics name.
*/}}
{{- define "vertical-pod-autoscaler.admissionController.metrics.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.admissionController.fullname" .) "metrics" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Component labels
*/}}
{{- define "vertical-pod-autoscaler.admissionController.componentLabels" -}}
app.kubernetes.io/component: admission-controller
{{- end -}}
{{/*
Common labels
*/}}
{{- define "vertical-pod-autoscaler.admissionController.labels" -}}
{{ include "vertical-pod-autoscaler.labels" . }}
{{ include "vertical-pod-autoscaler.admissionController.componentLabels" . }}
{{- end -}}
{{/*
Selector labels
*/}}
{{- define "vertical-pod-autoscaler.admissionController.selectorLabels" -}}
{{ include "vertical-pod-autoscaler.selectorLabels" . }}
{{ include "vertical-pod-autoscaler.admissionController.componentLabels" . }}
{{- end -}}
{{/*
Create the name of the service account to use
*/}}
{{- define "vertical-pod-autoscaler.admissionController.serviceAccountName" -}}
{{- if .Values.admissionController.serviceAccount.create -}}
{{ default (include "vertical-pod-autoscaler.admissionController.fullname" .) .Values.admissionController.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.admissionController.serviceAccount.name }}
{{- end -}}
{{- end -}}
{{/*
Create the name of the tls secret to use
*/}}
{{- define "vertical-pod-autoscaler.admissionController.tls.secretName" -}}
{{- if .Values.admissionController.tls.existingSecret -}}
{{ .Values.admissionController.tls.existingSecret }}
{{- else -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.admissionController.fullname" .) "tls" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,98 @@
{{- if .Values.admissionController.enabled }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRole
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
rules:
# system:vpa-target-reader
- apiGroups:
- "*"
resources:
- "*/scale"
verbs:
- get
- watch
- apiGroups:
- ""
resources:
- replicationcontrollers
verbs:
- get
- list
- watch
- apiGroups:
- apps
resources:
- daemonsets
- deployments
- replicasets
- statefulsets
verbs:
- get
- list
- watch
- apiGroups:
- batch
resources:
- jobs
- cronjobs
verbs:
- get
- list
- watch
# system:vpa-admission-controller
- apiGroups:
- ""
resources:
- pods
- configmaps
- nodes
- limitranges
verbs:
- get
- list
- watch
- apiGroups:
- "admissionregistration.k8s.io"
resources:
- mutatingwebhookconfigurations
verbs:
- create
- delete
- get
- list
- apiGroups:
- "poc.autoscaling.k8s.io"
resources:
- verticalpodautoscalers
verbs:
- get
- list
- watch
- apiGroups:
- "autoscaling.k8s.io"
resources:
- verticalpodautoscalers
verbs:
- get
- list
- watch
- apiGroups:
- "coordination.k8s.io"
resources:
- leases
verbs:
- create
- update
- get
- list
- watch
{{- end }}

View File

@@ -0,0 +1,22 @@
{{- if .Values.admissionController.enabled }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRoleBinding
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ include "vertical-pod-autoscaler.admissionController.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ include "vertical-pod-autoscaler.admissionController.serviceAccountName" . }}
namespace: {{ .Release.Namespace | quote }}
{{- end }}

View File

@@ -0,0 +1,162 @@
{{- if .Values.admissionController.enabled }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.admissionController.deploymentAnnotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.admissionController.deploymentAnnotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
replicas: {{ .Values.admissionController.replicaCount }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.admissionController.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "vertical-pod-autoscaler.admissionController.selectorLabels" . | nindent 8 }}
{{- if .Values.admissionController.podLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.admissionController.podLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 8 }}
{{- end }}
annotations:
{{- if not .Values.admissionController.tls.existingSecret }}
checksum/tls-secret: {{ include (print $.Template.BasePath "/admission-controller/tls-secret.yaml") . | sha256sum }}
{{- end }}
{{- if .Values.admissionController.podAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.admissionController.podAnnotations "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 8 }}
{{- end }}
spec:
enableServiceLinks: {{ .Values.admissionController.enableServiceLinks }}
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.admissionController.image ) "global" .Values.global ) | nindent 6 }}
{{- if .Values.admissionController.hostAliases }}
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.admissionController.hostAliases "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.admissionController.hostNetwork }}
dnsPolicy: ClusterFirstWithHostNet
hostNetwork: true
{{- end }}
{{- if .Values.admissionController.priorityClassName }}
priorityClassName: {{ .Values.admissionController.priorityClassName | quote }}
{{- end }}
{{- if .Values.admissionController.runtimeClassName }}
runtimeClassName: {{ .Values.admissionController.runtimeClassName | quote }}
{{- end }}
serviceAccountName: {{ include "vertical-pod-autoscaler.admissionController.serviceAccountName" . }}
{{- if .Values.admissionController.topologySpreadConstraints }}
topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.admissionController.topologySpreadConstraints "context" .) | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.admissionController.podSecurityContext | nindent 8 }}
containers:
- name: admission-controller
securityContext:
{{- toYaml .Values.admissionController.securityContext | nindent 12 }}
image: {{ include "common.images.image" ( dict "imageRoot" .Values.admissionController.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.admissionController.image.pullPolicy }}
args:
- --address=:{{ .Values.admissionController.containerPorts.metrics }}
- --port={{ .Values.admissionController.containerPorts.https }}
- --client-ca-file=/tls-secret/ca.crt
- --tls-cert-file=/tls-secret/tls.crt
- --tls-private-key=/tls-secret/tls.key
{{- range $key, $value := .Values.admissionController.extraArgs }}
- --{{ $key }}={{ $value }}
{{- end }}
env:
- name: NAMESPACE
value: {{ .Release.Namespace }}
{{- if .Values.admissionController.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.admissionController.extraEnvVars "context" $) | nindent 12 }}
{{- end }}
{{- if or .Values.admissionController.extraEnvVarsCM .Values.admissionController.extraEnvVarsSecret }}
envFrom:
{{- if .Values.admissionController.extraEnvVarsCM }}
- configMapRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.admissionController.extraEnvVarsCM "context" $) }}
{{- end }}
{{- if .Values.admissionController.extraEnvVarsSecret }}
- secretRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.admissionController.extraEnvVarsSecret "context" $) }}
{{- end }}
{{- end }}
ports:
- name: https
containerPort: {{ .Values.admissionController.containerPorts.https }}
protocol: TCP
- name: http-metrics
containerPort: {{ .Values.admissionController.containerPorts.metrics }}
protocol: TCP
{{- if .Values.admissionController.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.admissionController.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.admissionController.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.admissionController.livenessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.admissionController.livenessProbe.failureThreshold }}
successThreshold: {{ .Values.admissionController.livenessProbe.successThreshold }}
{{- end }}
{{- if .Values.admissionController.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.admissionController.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.admissionController.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.admissionController.readinessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.admissionController.readinessProbe.failureThreshold }}
successThreshold: {{ .Values.admissionController.readinessProbe.successThreshold }}
{{- end }}
{{- if .Values.admissionController.startupProbe.enabled }}
startupProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.admissionController.startupProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.admissionController.startupProbe.periodSeconds }}
timeoutSeconds: {{ .Values.admissionController.startupProbe.timeoutSeconds }}
failureThreshold: {{ .Values.admissionController.startupProbe.failureThreshold }}
successThreshold: {{ .Values.admissionController.startupProbe.successThreshold }}
{{- end }}
resources:
{{- toYaml .Values.admissionController.resources | nindent 12 }}
volumeMounts:
- name: tls-secret
mountPath: /tls-secret
readOnly: true
{{- if .Values.admissionController.extraVolumeMounts }}
{{- include "common.tplvalues.render" (dict "value" .Values.admissionController.extraVolumeMounts "context" $) | nindent 12 }}
{{- end }}
{{- with .Values.admissionController.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.admissionController.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.admissionController.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
- name: tls-secret
secret:
secretName: {{ include "vertical-pod-autoscaler.admissionController.tls.secretName" . }}
{{- if .Values.admissionController.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.admissionController.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,33 @@
{{- if .Values.admissionController.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.metrics.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.admissionController.metrics.service.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.admissionController.metrics.service.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.admissionController.metrics.service.type }}
{{- if and (eq .Values.admissionController.metrics.service.type "ClusterIP") .Values.admissionController.metrics.service.clusterIP }}
clusterIP: {{ .Values.admissionController.metrics.service.clusterIP }}
{{- end }}
{{- if .Values.admissionController.metrics.service.ipFamilyPolicy }}
ipFamilyPolicy: {{ .Values.admissionController.metrics.service.ipFamilyPolicy }}
{{- end }}
{{- if not (empty .Values.admissionController.metrics.service.ipFamilies)}}
ipFamilies: {{- toYaml .Values.admissionController.metrics.service.ipFamilies | nindent 4 }}
{{- end }}
ports:
- port: {{ .Values.admissionController.metrics.service.ports.metrics }}
targetPort: http-metrics
protocol: TCP
name: http-metrics
selector:
{{- include "vertical-pod-autoscaler.admissionController.selectorLabels" . | nindent 4 }}
{{- end }}

View File

@@ -0,0 +1,26 @@
{{- if .Values.admissionController.enabled }}
{{- if .Values.admissionController.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.admissionController.pdb.minAvailable }}
minAvailable: {{ .Values.admissionController.pdb.minAvailable }}
{{- end }}
{{- if .Values.admissionController.pdb.maxUnavailable }}
maxUnavailable: {{ .Values.admissionController.pdb.maxUnavailable }}
{{- end }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.admissionController.selectorLabels" . | nindent 6 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,39 @@
{{- if .Values.admissionController.enabled }}
apiVersion: v1
kind: Service
metadata:
name: vpa-webhook
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.admissionController.service.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.admissionController.service.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.admissionController.service.type }}
{{- if and (eq .Values.admissionController.service.type "ClusterIP") .Values.admissionController.service.clusterIP }}
clusterIP: {{ .Values.admissionController.service.clusterIP }}
{{- end }}
{{- if .Values.admissionController.service.ipFamilyPolicy }}
ipFamilyPolicy: {{ .Values.admissionController.service.ipFamilyPolicy }}
{{- end }}
{{- if not (empty .Values.admissionController.service.ipFamilies)}}
ipFamilies: {{- toYaml .Values.admissionController.service.ipFamilies | nindent 4 }}
{{- end }}
{{- if .Values.admissionController.service.sessionAffinity }}
sessionAffinity: {{ .Values.admissionController.service.sessionAffinity }}
{{- end }}
{{- if .Values.admissionController.service.sessionAffinityConfig }}
sessionAffinityConfig: {{- include "common.tplvalues.render" (dict "value" .Values.admissionController.service.sessionAffinityConfig "context" $) | nindent 4 }}
{{- end }}
ports:
- port: {{ .Values.admissionController.service.ports.https }}
targetPort: https
protocol: TCP
name: https
selector:
{{- include "vertical-pod-autoscaler.admissionController.selectorLabels" . | nindent 4 }}
{{- end }}

View File

@@ -0,0 +1,17 @@
{{- if .Values.admissionController.enabled }}
{{- if .Values.admissionController.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.serviceAccountName" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.admissionController.serviceAccount.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.admissionController.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,49 @@
{{- if .Values.admissionController.enabled }}
{{- if .Values.admissionController.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.fullname" . }}
namespace: {{ default .Release.Namespace .Values.admissionController.metrics.serviceMonitor.namespace | quote }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.admissionController.metrics.serviceMonitor.labels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.admissionController.metrics.serviceMonitor.labels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.admissionController.metrics.serviceMonitor.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.admissionController.metrics.serviceMonitor.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.admissionController.metrics.serviceMonitor.jobLabel }}
jobLabel: {{ .Values.admissionController.metrics.serviceMonitor.jobLabel }}
{{- end }}
endpoints:
- port: http-metrics
{{- if .Values.admissionController.metrics.serviceMonitor.interval }}
interval: {{ .Values.admissionController.metrics.serviceMonitor.interval }}
{{- end}}
{{- if .Values.admissionController.metrics.serviceMonitor.scrapeTimeout }}
scrapeTimeout: {{ .Values.admissionController.metrics.serviceMonitor.scrapeTimeout }}
{{- end}}
{{- if .Values.admissionController.metrics.serviceMonitor.honorLabels }}
honorLabels: {{ .Values.admissionController.metrics.serviceMonitor.honorLabels }}
{{- end}}
{{- if .Values.admissionController.metrics.serviceMonitor.metricRelabelings }}
metricRelabelings: {{ toYaml .Values.admissionController.metrics.serviceMonitor.metricRelabelings | nindent 8 }}
{{- end }}
{{- if .Values.admissionController.metrics.serviceMonitor.relabelings }}
relabelings: {{ toYaml .Values.admissionController.metrics.serviceMonitor.relabelings | nindent 8 }}
{{- end }}
path: /metrics
namespaceSelector:
matchNames:
- {{ .Release.Namespace | quote }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.admissionController.selectorLabels" . | nindent 6 }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,24 @@
{{- if .Values.admissionController.enabled }}
{{- if not .Values.admissionController.tls.existingSecret }}
{{- $ca := genCA (include "vertical-pod-autoscaler.admissionController.fullname" .) 365 }}
{{- $cn := printf "%s.%s.svc" "vpa-webhook" .Release.Namespace }}
{{- $cert := genSignedCert $cn nil (list $cn) 365 $ca }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "vertical-pod-autoscaler.admissionController.tls.secretName" . }}
labels:
{{- include "vertical-pod-autoscaler.admissionController.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
ca.crt: {{ default $ca.Cert .Values.admissionController.tls.caCert | b64enc | quote }}
tls.crt: {{ default $cert.Cert .Values.admissionController.tls.cert | b64enc | quote }}
tls.key: {{ default $cert.Key .Values.admissionController.tls.key | b64enc | quote }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,30 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "vertical-pod-autoscaler.crds.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.fullname" .) "crds" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Component labels
*/}}
{{- define "vertical-pod-autoscaler.crds.componentLabels" -}}
app.kubernetes.io/component: crds
{{- end -}}
{{/*
Common labels
*/}}
{{- define "vertical-pod-autoscaler.crds.labels" -}}
{{ include "vertical-pod-autoscaler.labels" . }}
{{ include "vertical-pod-autoscaler.crds.componentLabels" . }}
{{- end -}}
{{/*
Selector labels
*/}}
{{- define "vertical-pod-autoscaler.crds.selectorLabels" -}}
{{ include "vertical-pod-autoscaler.selectorLabels" . }}
{{ include "vertical-pod-autoscaler.crds.componentLabels" . }}
{{- end -}}

View File

@@ -0,0 +1,26 @@
{{- if .Values.crds.enabled }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRole
metadata:
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.crds.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: pre-install,pre-upgrade
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
rules:
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- create
- get
- patch
{{- end }}

View File

@@ -0,0 +1,25 @@
{{- if .Values.crds.enabled }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRoleBinding
metadata:
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.crds.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: pre-install,pre-upgrade
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
namespace: {{ .Release.Namespace | quote }}
{{- end }}

View File

@@ -0,0 +1,22 @@
{{- if .Values.crds.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.crds.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: pre-install,pre-upgrade
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
{{- range $path, $_ := .Files.Glob "files/crds/*" }}
{{ base $path }}: |
{{- tpl ($.Files.Get $path) $ | nindent 4 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,71 @@
{{- if .Values.crds.enabled }}
apiVersion: batch/v1
kind: Job
metadata:
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.crds.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: pre-install,pre-upgrade
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
template:
metadata:
labels:
{{- include "vertical-pod-autoscaler.crds.selectorLabels" . | nindent 8 }}
{{- if .Values.crds.podLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.crds.podLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if or .Values.crds.podAnnotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.crds.podAnnotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 8 }}
{{- end }}
spec:
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.crds.image ) "global" .Values.global ) | nindent 6 }}
serviceAccountName: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
securityContext:
{{- toYaml .Values.crds.podSecurityContext | nindent 8 }}
containers:
- name: kubectl
securityContext:
{{- toYaml .Values.crds.securityContext | nindent 12 }}
image: {{ include "common.images.image" ( dict "imageRoot" .Values.crds.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.crds.image.pullPolicy }}
args:
- apply
{{- range $path, $_ := .Files.Glob "files/crds/*" }}
- --filename=/config/{{ base $path }}
{{- end }}
resources:
{{- toYaml .Values.crds.resources | nindent 12 }}
volumeMounts:
- name: config
mountPath: /config
readOnly: true
{{- with .Values.crds.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.crds.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.crds.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
restartPolicy: Never
volumes:
- name: config
configMap:
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
{{- end }}

View File

@@ -0,0 +1,17 @@
{{- if .Values.crds.enabled }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "vertical-pod-autoscaler.crds.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.crds.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: pre-install,pre-upgrade
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,4 @@
{{- range .Values.extraDeploy }}
---
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
{{- end }}

View File

@@ -0,0 +1,48 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "vertical-pod-autoscaler.recommender.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.fullname" .) "recommender" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create a default fully qualified metrics name.
*/}}
{{- define "vertical-pod-autoscaler.recommender.metrics.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.recommender.fullname" .) "metrics" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Component labels
*/}}
{{- define "vertical-pod-autoscaler.recommender.componentLabels" -}}
app.kubernetes.io/component: recommender
{{- end -}}
{{/*
Common labels
*/}}
{{- define "vertical-pod-autoscaler.recommender.labels" -}}
{{ include "vertical-pod-autoscaler.labels" . }}
{{ include "vertical-pod-autoscaler.recommender.componentLabels" . }}
{{- end -}}
{{/*
Selector labels
*/}}
{{- define "vertical-pod-autoscaler.recommender.selectorLabels" -}}
{{ include "vertical-pod-autoscaler.selectorLabels" . }}
{{ include "vertical-pod-autoscaler.recommender.componentLabels" . }}
{{- end -}}
{{/*
Create the name of the service account to use
*/}}
{{- define "vertical-pod-autoscaler.recommender.serviceAccountName" -}}
{{- if .Values.recommender.serviceAccount.create -}}
{{ default (include "vertical-pod-autoscaler.recommender.fullname" .) .Values.recommender.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.recommender.serviceAccount.name }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,149 @@
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRole
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
rules:
# system:metrics-reader
- apiGroups:
- "metrics.k8s.io"
resources:
- pods
verbs:
- get
- list
# system:vpa-actor
- apiGroups:
- ""
resources:
- pods
- nodes
- limitranges
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- events
verbs:
- get
- list
- watch
- create
- apiGroups:
- "poc.autoscaling.k8s.io"
resources:
- verticalpodautoscalers
verbs:
- get
- list
- watch
- apiGroups:
- "autoscaling.k8s.io"
resources:
- verticalpodautoscalers
verbs:
- get
- list
- watch
# system:vpa-status-actor
- apiGroups:
- "autoscaling.k8s.io"
resources:
- verticalpodautoscalers/status
verbs:
- get
- patch
# system:vpa-checkpoint-actor
- apiGroups:
- "poc.autoscaling.k8s.io"
resources:
- verticalpodautoscalercheckpoints
verbs:
- get
- list
- watch
- create
- patch
- delete
- apiGroups:
- "autoscaling.k8s.io"
resources:
- verticalpodautoscalercheckpoints
verbs:
- get
- list
- watch
- create
- patch
- delete
- apiGroups:
- ""
resources:
- namespaces
verbs:
- get
- list
# system:vpa-target-reader
- apiGroups:
- "*"
resources:
- "*/scale"
verbs:
- get
- watch
- apiGroups:
- ""
resources:
- replicationcontrollers
verbs:
- get
- list
- watch
- apiGroups:
- apps
resources:
- daemonsets
- deployments
- replicasets
- statefulsets
verbs:
- get
- list
- watch
- apiGroups:
- batch
resources:
- jobs
- cronjobs
verbs:
- get
- list
- watch
# system:leader-locking-vpa-recommender
- apiGroups:
- "coordination.k8s.io"
resources:
- leases
verbs:
- create
- apiGroups:
- "coordination.k8s.io"
resourceNames:
- vpa-recommender
- vpa-recommender-lease
resources:
- leases
verbs:
- get
- watch
- update

View File

@@ -0,0 +1,20 @@
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRoleBinding
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ include "vertical-pod-autoscaler.recommender.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ include "vertical-pod-autoscaler.recommender.serviceAccountName" . }}
namespace: {{ .Release.Namespace | quote }}

View File

@@ -0,0 +1,140 @@
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.recommender.deploymentAnnotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.recommender.deploymentAnnotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
replicas: {{ .Values.recommender.replicaCount }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.recommender.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "vertical-pod-autoscaler.recommender.selectorLabels" . | nindent 8 }}
{{- if .Values.recommender.podLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.recommender.podLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if or .Values.recommender.podAnnotations .Values.commonAnnotations }}
annotations:
{{- if .Values.recommender.podAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.recommender.podAnnotations "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 8 }}
{{- end }}
{{- end }}
spec:
enableServiceLinks: {{ .Values.recommender.enableServiceLinks }}
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.recommender.image ) "global" .Values.global ) | nindent 6 }}
{{- if .Values.recommender.hostAliases }}
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.recommender.hostAliases "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.recommender.priorityClassName }}
priorityClassName: {{ .Values.recommender.priorityClassName | quote }}
{{- end }}
{{- if .Values.recommender.runtimeClassName }}
runtimeClassName: {{ .Values.recommender.runtimeClassName | quote }}
{{- end }}
serviceAccountName: {{ include "vertical-pod-autoscaler.recommender.serviceAccountName" . }}
{{- if .Values.recommender.topologySpreadConstraints }}
topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.recommender.topologySpreadConstraints "context" .) | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.recommender.podSecurityContext | nindent 8 }}
containers:
- name: recommender
securityContext:
{{- toYaml .Values.recommender.securityContext | nindent 12 }}
image: {{ include "common.images.image" ( dict "imageRoot" .Values.recommender.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.recommender.image.pullPolicy }}
args:
- --address=:{{ .Values.recommender.containerPorts.metrics }}
{{- range $key, $value := .Values.recommender.extraArgs }}
- --{{ $key }}={{ $value }}
{{- end }}
{{- if .Values.recommender.extraEnvVars }}
env:
{{- include "common.tplvalues.render" (dict "value" .Values.recommender.extraEnvVars "context" $) | nindent 12 }}
{{- end }}
{{- if or .Values.recommender.extraEnvVarsCM .Values.recommender.extraEnvVarsSecret }}
envFrom:
{{- if .Values.recommender.extraEnvVarsCM }}
- configMapRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.recommender.extraEnvVarsCM "context" $) }}
{{- end }}
{{- if .Values.recommender.extraEnvVarsSecret }}
- secretRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.recommender.extraEnvVarsSecret "context" $) }}
{{- end }}
{{- end }}
ports:
- name: http-metrics
containerPort: {{ .Values.recommender.containerPorts.metrics }}
protocol: TCP
{{- if .Values.recommender.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.recommender.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.recommender.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.recommender.livenessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.recommender.livenessProbe.failureThreshold }}
successThreshold: {{ .Values.recommender.livenessProbe.successThreshold }}
{{- end }}
{{- if .Values.recommender.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.recommender.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.recommender.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.recommender.readinessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.recommender.readinessProbe.failureThreshold }}
successThreshold: {{ .Values.recommender.readinessProbe.successThreshold }}
{{- end }}
{{- if .Values.recommender.startupProbe.enabled }}
startupProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.recommender.startupProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.recommender.startupProbe.periodSeconds }}
timeoutSeconds: {{ .Values.recommender.startupProbe.timeoutSeconds }}
failureThreshold: {{ .Values.recommender.startupProbe.failureThreshold }}
successThreshold: {{ .Values.recommender.startupProbe.successThreshold }}
{{- end }}
resources:
{{- toYaml .Values.recommender.resources | nindent 12 }}
volumeMounts:
{{- if .Values.recommender.extraVolumeMounts }}
{{- include "common.tplvalues.render" (dict "value" .Values.recommender.extraVolumeMounts "context" $) | nindent 12 }}
{{- end }}
{{- with .Values.recommender.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.recommender.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.recommender.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
{{- if .Values.recommender.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.recommender.extraVolumes "context" $) | nindent 8 }}
{{- end }}

View File

@@ -0,0 +1,31 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.metrics.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.recommender.metrics.service.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.recommender.metrics.service.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.recommender.metrics.service.type }}
{{- if and (eq .Values.recommender.metrics.service.type "ClusterIP") .Values.recommender.metrics.service.clusterIP }}
clusterIP: {{ .Values.recommender.metrics.service.clusterIP }}
{{- end }}
{{- if .Values.recommender.metrics.service.ipFamilyPolicy }}
ipFamilyPolicy: {{ .Values.recommender.metrics.service.ipFamilyPolicy }}
{{- end }}
{{- if not (empty .Values.recommender.metrics.service.ipFamilies)}}
ipFamilies: {{- toYaml .Values.recommender.metrics.service.ipFamilies | nindent 4 }}
{{- end }}
ports:
- port: {{ .Values.recommender.metrics.service.ports.metrics }}
targetPort: http-metrics
protocol: TCP
name: http-metrics
selector:
{{- include "vertical-pod-autoscaler.recommender.selectorLabels" . | nindent 4 }}

View File

@@ -0,0 +1,24 @@
{{- if .Values.recommender.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.recommender.pdb.minAvailable }}
minAvailable: {{ .Values.recommender.pdb.minAvailable }}
{{- end }}
{{- if .Values.recommender.pdb.maxUnavailable }}
maxUnavailable: {{ .Values.recommender.pdb.maxUnavailable }}
{{- end }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.recommender.selectorLabels" . | nindent 6 }}
{{- end }}

View File

@@ -0,0 +1,15 @@
{{- if .Values.recommender.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.serviceAccountName" . }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.recommender.serviceAccount.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.recommender.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
{{- end -}}

View File

@@ -0,0 +1,47 @@
{{- if .Values.recommender.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "vertical-pod-autoscaler.recommender.fullname" . }}
namespace: {{ default .Release.Namespace .Values.recommender.metrics.serviceMonitor.namespace | quote }}
labels:
{{- include "vertical-pod-autoscaler.recommender.labels" . | nindent 4 }}
{{- if .Values.recommender.metrics.serviceMonitor.labels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.recommender.metrics.serviceMonitor.labels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.recommender.metrics.serviceMonitor.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.recommender.metrics.serviceMonitor.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.recommender.metrics.serviceMonitor.jobLabel }}
jobLabel: {{ .Values.recommender.metrics.serviceMonitor.jobLabel }}
{{- end }}
endpoints:
- port: http-metrics
{{- if .Values.recommender.metrics.serviceMonitor.interval }}
interval: {{ .Values.recommender.metrics.serviceMonitor.interval }}
{{- end}}
{{- if .Values.recommender.metrics.serviceMonitor.scrapeTimeout }}
scrapeTimeout: {{ .Values.recommender.metrics.serviceMonitor.scrapeTimeout }}
{{- end}}
{{- if .Values.recommender.metrics.serviceMonitor.honorLabels }}
honorLabels: {{ .Values.recommender.metrics.serviceMonitor.honorLabels }}
{{- end}}
{{- if .Values.recommender.metrics.serviceMonitor.metricRelabelings }}
metricRelabelings: {{ toYaml .Values.recommender.metrics.serviceMonitor.metricRelabelings | nindent 8 }}
{{- end }}
{{- if .Values.recommender.metrics.serviceMonitor.relabelings }}
relabelings: {{ toYaml .Values.recommender.metrics.serviceMonitor.relabelings | nindent 8 }}
{{- end }}
path: /metrics
namespaceSelector:
matchNames:
- {{ .Release.Namespace | quote }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.recommender.selectorLabels" . | nindent 6 }}
{{- end -}}

View File

@@ -0,0 +1,22 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "vertical-pod-autoscaler.tests.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.fullname" .) "tests" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Component labels
*/}}
{{- define "vertical-pod-autoscaler.tests.componentLabels" -}}
app.kubernetes.io/component: tests
{{- end -}}
{{/*
Common labels
*/}}
{{- define "vertical-pod-autoscaler.tests.labels" -}}
{{ include "vertical-pod-autoscaler.labels" . }}
{{ include "vertical-pod-autoscaler.tests.componentLabels" . }}
{{- end -}}

View File

@@ -0,0 +1,50 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "vertical-pod-autoscaler.tests.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.tests.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: test
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
test_all.py: |
import requests
def test_admission_controller_service_connection():
url = "https://vpa-webhook.{{ .Release.Namespace }}.svc:{{ .Values.admissionController.service.ports.https }}/"
verify = "/admission-controller-tls-secret/ca.crt"
response = requests.get(url, verify=verify)
assert response.status_code == 200
def test_admission_controller_metrics_service_connection():
url = "http://{{ include "vertical-pod-autoscaler.admissionController.metrics.fullname" . }}:{{ .Values.admissionController.metrics.service.ports.metrics }}/metrics"
response = requests.get(url)
assert response.status_code == 200
def test_recommender_metrics_service_connection():
url = "http://{{ include "vertical-pod-autoscaler.recommender.metrics.fullname" . }}:{{ .Values.recommender.metrics.service.ports.metrics }}/metrics"
response = requests.get(url)
assert response.status_code == 200
def test_updater_metrics_service_connection():
url = "http://{{ include "vertical-pod-autoscaler.updater.metrics.fullname" . }}:{{ .Values.updater.metrics.service.ports.metrics }}/metrics"
response = requests.get(url)
assert response.status_code == 200

View File

@@ -0,0 +1,36 @@
apiVersion: v1
kind: Pod
metadata:
name: {{ include "vertical-pod-autoscaler.tests.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.tests.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
annotations:
helm.sh/hook: test
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.tests.image ) "global" .Values.global ) | nindent 2 }}
containers:
- name: tests
image: {{ include "common.images.image" ( dict "imageRoot" .Values.tests.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.tests.image.pullPolicy }}
volumeMounts:
- name: tests
mountPath: /tests
readOnly: true
- name: admission-controller-tls-secret
mountPath: /admission-controller-tls-secret
readOnly: true
workingDir: /tests
restartPolicy: Never
volumes:
- name: tests
configMap:
name: {{ include "vertical-pod-autoscaler.tests.fullname" . }}
- name: admission-controller-tls-secret
secret:
secretName: {{ include "vertical-pod-autoscaler.admissionController.tls.secretName" . }}

View File

@@ -0,0 +1,48 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "vertical-pod-autoscaler.updater.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.fullname" .) "updater" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create a default fully qualified metrics name.
*/}}
{{- define "vertical-pod-autoscaler.updater.metrics.fullname" -}}
{{- printf "%s-%s" (include "vertical-pod-autoscaler.updater.fullname" .) "metrics" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Component labels
*/}}
{{- define "vertical-pod-autoscaler.updater.componentLabels" -}}
app.kubernetes.io/component: updater
{{- end -}}
{{/*
Common labels
*/}}
{{- define "vertical-pod-autoscaler.updater.labels" -}}
{{ include "vertical-pod-autoscaler.labels" . }}
{{ include "vertical-pod-autoscaler.updater.componentLabels" . }}
{{- end -}}
{{/*
Selector labels
*/}}
{{- define "vertical-pod-autoscaler.updater.selectorLabels" -}}
{{ include "vertical-pod-autoscaler.selectorLabels" . }}
{{ include "vertical-pod-autoscaler.updater.componentLabels" . }}
{{- end -}}
{{/*
Create the name of the service account to use
*/}}
{{- define "vertical-pod-autoscaler.updater.serviceAccountName" -}}
{{- if .Values.updater.serviceAccount.create -}}
{{ default (include "vertical-pod-autoscaler.updater.fullname" .) .Values.updater.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.updater.serviceAccount.name }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,127 @@
{{- if .Values.updater.enabled }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRole
metadata:
name: {{ include "vertical-pod-autoscaler.updater.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
rules:
# system:vpa-actor
- apiGroups:
- ""
resources:
- pods
- nodes
- limitranges
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- events
verbs:
- get
- list
- watch
- create
- apiGroups:
- "poc.autoscaling.k8s.io"
resources:
- verticalpodautoscalers
verbs:
- get
- list
- watch
- apiGroups:
- "autoscaling.k8s.io"
resources:
- verticalpodautoscalers
verbs:
- get
- list
- watch
# system:vpa-target-reader
- apiGroups:
- "*"
resources:
- "*/scale"
verbs:
- get
- watch
- apiGroups:
- ""
resources:
- replicationcontrollers
verbs:
- get
- list
- watch
- apiGroups:
- apps
resources:
- daemonsets
- deployments
- replicasets
- statefulsets
verbs:
- get
- list
- watch
- apiGroups:
- batch
resources:
- jobs
- cronjobs
verbs:
- get
- list
- watch
# system:evictioner
- apiGroups:
- "apps"
- "extensions"
resources:
- replicasets
verbs:
- get
- apiGroups:
- ""
resources:
- pods/eviction
verbs:
- create
# system:vpa-status-reader
- apiGroups:
- "coordination.k8s.io"
resources:
- leases
verbs:
- get
- list
- watch
# system:leader-locking-vpa-updater
- apiGroups:
- "coordination.k8s.io"
resources:
- leases
verbs:
- create
- apiGroups:
- "coordination.k8s.io"
resourceNames:
- vpa-updater
resources:
- leases
verbs:
- get
- watch
- update
{{- end }}

View File

@@ -0,0 +1,22 @@
{{- if .Values.updater.enabled }}
apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
kind: ClusterRoleBinding
metadata:
name: {{ include "vertical-pod-autoscaler.updater.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ include "vertical-pod-autoscaler.updater.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ include "vertical-pod-autoscaler.updater.serviceAccountName" . }}
namespace: {{ .Release.Namespace | quote }}
{{- end }}

View File

@@ -0,0 +1,144 @@
{{- if .Values.updater.enabled }}
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
kind: Deployment
metadata:
name: {{ include "vertical-pod-autoscaler.updater.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.updater.deploymentAnnotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.updater.deploymentAnnotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
replicas: {{ .Values.updater.replicaCount }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.updater.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "vertical-pod-autoscaler.updater.selectorLabels" . | nindent 8 }}
{{- if .Values.updater.podLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.updater.podLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 8 }}
{{- end }}
{{- if or .Values.updater.podAnnotations .Values.commonAnnotations }}
annotations:
{{- if .Values.updater.podAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.updater.podAnnotations "context" $ ) | nindent 8 }}
{{- end }}
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 8 }}
{{- end }}
{{- end }}
spec:
enableServiceLinks: {{ .Values.updater.enableServiceLinks }}
{{- include "common.images.pullSecrets" ( dict "images" ( list .Values.updater.image ) "global" .Values.global ) | nindent 6 }}
{{- if .Values.updater.hostAliases }}
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.updater.hostAliases "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.updater.priorityClassName }}
priorityClassName: {{ .Values.updater.priorityClassName | quote }}
{{- end }}
{{- if .Values.updater.runtimeClassName }}
runtimeClassName: {{ .Values.updater.runtimeClassName | quote }}
{{- end }}
serviceAccountName: {{ include "vertical-pod-autoscaler.updater.serviceAccountName" . }}
{{- if .Values.updater.topologySpreadConstraints }}
topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.updater.topologySpreadConstraints "context" .) | nindent 8 }}
{{- end }}
securityContext:
{{- toYaml .Values.updater.podSecurityContext | nindent 8 }}
containers:
- name: updater
securityContext:
{{- toYaml .Values.updater.securityContext | nindent 12 }}
image: {{ include "common.images.image" ( dict "imageRoot" .Values.updater.image "global" .Values.global ) }}
imagePullPolicy: {{ .Values.updater.image.pullPolicy }}
args:
- --address=:{{ .Values.updater.containerPorts.metrics }}
{{- range $key, $value := .Values.updater.extraArgs }}
- --{{ $key }}={{ $value }}
{{- end }}
env:
- name: NAMESPACE
value: {{ .Release.Namespace }}
{{- if .Values.updater.extraEnvVars }}
{{- include "common.tplvalues.render" (dict "value" .Values.updater.extraEnvVars "context" $) | nindent 12 }}
{{- end }}
{{- if or .Values.updater.extraEnvVarsCM .Values.updater.extraEnvVarsSecret }}
envFrom:
{{- if .Values.updater.extraEnvVarsCM }}
- configMapRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.updater.extraEnvVarsCM "context" $) }}
{{- end }}
{{- if .Values.updater.extraEnvVarsSecret }}
- secretRef:
name: {{ include "common.tplvalues.render" (dict "value" .Values.updater.extraEnvVarsSecret "context" $) }}
{{- end }}
{{- end }}
ports:
- name: http-metrics
containerPort: {{ .Values.updater.containerPorts.metrics }}
protocol: TCP
{{- if .Values.updater.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.updater.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.updater.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.updater.livenessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.updater.livenessProbe.failureThreshold }}
successThreshold: {{ .Values.updater.livenessProbe.successThreshold }}
{{- end }}
{{- if .Values.updater.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.updater.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.updater.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.updater.readinessProbe.timeoutSeconds }}
failureThreshold: {{ .Values.updater.readinessProbe.failureThreshold }}
successThreshold: {{ .Values.updater.readinessProbe.successThreshold }}
{{- end }}
{{- if .Values.updater.startupProbe.enabled }}
startupProbe:
httpGet:
path: /health-check
port: http-metrics
initialDelaySeconds: {{ .Values.updater.startupProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.updater.startupProbe.periodSeconds }}
timeoutSeconds: {{ .Values.updater.startupProbe.timeoutSeconds }}
failureThreshold: {{ .Values.updater.startupProbe.failureThreshold }}
successThreshold: {{ .Values.updater.startupProbe.successThreshold }}
{{- end }}
resources:
{{- toYaml .Values.updater.resources | nindent 12 }}
volumeMounts:
{{- if .Values.updater.extraVolumeMounts }}
{{- include "common.tplvalues.render" (dict "value" .Values.updater.extraVolumeMounts "context" $) | nindent 12 }}
{{- end }}
{{- with .Values.updater.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.updater.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.updater.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
{{- if .Values.updater.extraVolumes }}
{{- include "common.tplvalues.render" (dict "value" .Values.updater.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,33 @@
{{- if .Values.updater.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "vertical-pod-autoscaler.updater.metrics.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.updater.metrics.service.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.updater.metrics.service.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.updater.metrics.service.type }}
{{- if and (eq .Values.updater.metrics.service.type "ClusterIP") .Values.updater.metrics.service.clusterIP }}
clusterIP: {{ .Values.updater.metrics.service.clusterIP }}
{{- end }}
{{- if .Values.updater.metrics.service.ipFamilyPolicy }}
ipFamilyPolicy: {{ .Values.updater.metrics.service.ipFamilyPolicy }}
{{- end }}
{{- if not (empty .Values.updater.metrics.service.ipFamilies)}}
ipFamilies: {{- toYaml .Values.updater.metrics.service.ipFamilies | nindent 4 }}
{{- end }}
ports:
- port: {{ .Values.updater.metrics.service.ports.metrics }}
targetPort: http-metrics
protocol: TCP
name: http-metrics
selector:
{{- include "vertical-pod-autoscaler.updater.selectorLabels" . | nindent 4 }}
{{- end }}

View File

@@ -0,0 +1,26 @@
{{- if .Values.updater.enabled }}
{{- if .Values.updater.pdb.create }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
metadata:
name: {{ include "vertical-pod-autoscaler.updater.fullname" . }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.updater.pdb.minAvailable }}
minAvailable: {{ .Values.updater.pdb.minAvailable }}
{{- end }}
{{- if .Values.updater.pdb.maxUnavailable }}
maxUnavailable: {{ .Values.updater.pdb.maxUnavailable }}
{{- end }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.updater.selectorLabels" . | nindent 6 }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,17 @@
{{- if .Values.updater.enabled }}
{{- if .Values.updater.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "vertical-pod-autoscaler.updater.serviceAccountName" . }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.updater.serviceAccount.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.updater.serviceAccount.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,49 @@
{{- if .Values.updater.enabled }}
{{- if .Values.updater.metrics.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "vertical-pod-autoscaler.updater.fullname" . }}
namespace: {{ default .Release.Namespace .Values.updater.metrics.serviceMonitor.namespace | quote }}
labels:
{{- include "vertical-pod-autoscaler.updater.labels" . | nindent 4 }}
{{- if .Values.updater.metrics.serviceMonitor.labels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.updater.metrics.serviceMonitor.labels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.updater.metrics.serviceMonitor.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.updater.metrics.serviceMonitor.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $ ) | nindent 4 }}
{{- end }}
spec:
{{- if .Values.updater.metrics.serviceMonitor.jobLabel }}
jobLabel: {{ .Values.updater.metrics.serviceMonitor.jobLabel }}
{{- end }}
endpoints:
- port: http-metrics
{{- if .Values.updater.metrics.serviceMonitor.interval }}
interval: {{ .Values.updater.metrics.serviceMonitor.interval }}
{{- end}}
{{- if .Values.updater.metrics.serviceMonitor.scrapeTimeout }}
scrapeTimeout: {{ .Values.updater.metrics.serviceMonitor.scrapeTimeout }}
{{- end}}
{{- if .Values.updater.metrics.serviceMonitor.honorLabels }}
honorLabels: {{ .Values.updater.metrics.serviceMonitor.honorLabels }}
{{- end}}
{{- if .Values.updater.metrics.serviceMonitor.metricRelabelings }}
metricRelabelings: {{ toYaml .Values.updater.metrics.serviceMonitor.metricRelabelings | nindent 8 }}
{{- end }}
{{- if .Values.updater.metrics.serviceMonitor.relabelings }}
relabelings: {{ toYaml .Values.updater.metrics.serviceMonitor.relabelings | nindent 8 }}
{{- end }}
path: /metrics
namespaceSelector:
matchNames:
- {{ .Release.Namespace | quote }}
selector:
matchLabels:
{{- include "vertical-pod-autoscaler.updater.selectorLabels" . | nindent 6 }}
{{- end -}}
{{- end -}}

View File

@@ -0,0 +1,966 @@
# Default values for vertical-pod-autoscaler.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
## @section Global parameters
global:
## @param global.imageRegistry Global Docker image registry
imageRegistry: ""
## @param global.imagePullSecrets Global Docker registry secret names as an array
imagePullSecrets: []
## @section Common parameters
## @param kubeVersion Override Kubernetes version
kubeVersion: ""
## @param nameOverride Partially override `vertical-pod-autoscaler.fullname` template with a string (will prepend the release name)
nameOverride: ""
## @param fullnameOverride Fully override `vertical-pod-autoscaler.fullname` template with a string
fullnameOverride: ""
## @param commonAnnotations Annotations to add to all deployed objects
commonAnnotations: {}
## @param commonLabels Labels to add to all deployed objects
commonLabels: {}
## @param extraDeploy Array of extra objects to deploy with the release
extraDeploy: []
## @section Admission controller parameters
admissionController:
## @param admissionController.enabled Enable the component
enabled: true
## @param admissionController.replicaCount Number of replicas
replicaCount: 1
image:
## @param admissionController.image.registry Image registry
registry: registry.k8s.io
## @param admissionController.image.repository Image repository
repository: autoscaling/vpa-admission-controller
## @param admissionController.image.tag Image tag
tag: 1.3.0
## @param admissionController.image.digest Image digest
digest: ""
## @param admissionController.image.pullPolicy Image pull policy
pullPolicy: IfNotPresent
pdb:
## @param admissionController.pdb.create Specifies whether a pod disruption budget should be created
create: false
## @param admissionController.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
minAvailable: 1
## @param admissionController.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
maxUnavailable:
# maxUnavailable: 1
serviceAccount:
## @param admissionController.serviceAccount.create Specifies whether a service account should be created
create: true
## @param admissionController.serviceAccount.annotations Service account annotations
annotations: {}
## @param admissionController.serviceAccount.name The name of the service account to use (Generated using the `vertical-pod-autoscaler.fullname` template if not set)
name:
## @param admissionController.enableServiceLinks Whether information about services should be injected into pod's environment variable
enableServiceLinks: false
## @param admissionController.hostAliases Pod host aliases
hostAliases: []
## @param admissionController.deploymentAnnotations Additional deployment annotations
deploymentAnnotations: {}
## @param admissionController.podAnnotations Additional pod annotations
podAnnotations: {}
## @param admissionController.podLabels Additional pod labels
podLabels: {}
## @extra admissionController.podSecurityContext Pod security context
## @param admissionController.podSecurityContext.runAsNonRoot Whether the container must run as a non-root user
## @param admissionController.podSecurityContext.runAsUser The UID to run the entrypoint of the container process
## @param admissionController.podSecurityContext.runAsGroup The GID to run the entrypoint of the container process
podSecurityContext:
# fsGroup: 2000
runAsNonRoot: true
runAsUser: 65534
runAsGroup: 65534
## @param admissionController.hostNetwork Use the host network
hostNetwork: false
## @param admissionController.priorityClassName Priority class name
priorityClassName:
# priorityClassName : high-priority
## @param admissionController.runtimeClassName Runtime class name
runtimeClassName: ""
## @param admissionController.topologySpreadConstraints Topology Spread Constraints for pod assignment
topologySpreadConstraints: []
## @param admissionController.securityContext Container security context
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
containerPorts:
## @param admissionController.containerPorts.https Container port for HTTPS
https: 8000
## @param admissionController.containerPorts.metrics Container port for Metrics
metrics: 8944
livenessProbe:
## @param admissionController.livenessProbe.enabled Enable liveness probe
enabled: true
## @param admissionController.livenessProbe.initialDelaySeconds Delay before the liveness probe is initiated
initialDelaySeconds: 0
## @param admissionController.livenessProbe.periodSeconds How often to perform the liveness probe
periodSeconds: 10
## @param admissionController.livenessProbe.timeoutSeconds When the liveness probe times out
timeoutSeconds: 1
## @param admissionController.livenessProbe.failureThreshold Minimum consecutive failures for the liveness probe to be considered failed after having succeeded
failureThreshold: 3
## @param admissionController.livenessProbe.successThreshold Minimum consecutive successes for the liveness probe to be considered successful after having failed
successThreshold: 1
readinessProbe:
## @param admissionController.readinessProbe.enabled Enable readiness probe
enabled: true
## @param admissionController.readinessProbe.initialDelaySeconds Delay before the readiness probe is initiated
initialDelaySeconds: 0
## @param admissionController.readinessProbe.periodSeconds How often to perform the readiness probe
periodSeconds: 10
## @param admissionController.readinessProbe.timeoutSeconds When the readiness probe times out
timeoutSeconds: 1
## @param admissionController.readinessProbe.failureThreshold Minimum consecutive failures for the readiness probe to be considered failed after having succeeded
failureThreshold: 3
## @param admissionController.readinessProbe.successThreshold Minimum consecutive successes for the readiness probe to be considered successful after having failed
successThreshold: 1
startupProbe:
## @param admissionController.startupProbe.enabled Enable startup probe
enabled: false
## @param admissionController.startupProbe.initialDelaySeconds Delay before the startup probe is initiated
initialDelaySeconds: 0
## @param admissionController.startupProbe.periodSeconds How often to perform the startup probe
periodSeconds: 10
## @param admissionController.startupProbe.timeoutSeconds When the startup probe times out
timeoutSeconds: 1
## @param admissionController.startupProbe.failureThreshold Minimum consecutive failures for the startup probe to be considered failed after having succeeded
failureThreshold: 3
## @param admissionController.startupProbe.successThreshold Minimum consecutive successes for the startup probe to be considered successful after having failed
successThreshold: 1
service:
## @param admissionController.service.annotations Service annotations
annotations: {}
## @param admissionController.service.type Service type
type: ClusterIP
## @param admissionController.service.clusterIP Static cluster IP address or None for headless service when service type is ClusterIP
clusterIP:
# clusterIP: 10.43.0.100
## @param admissionController.service.ipFamilyPolicy Service IP family policy
ipFamilyPolicy: ""
## @param admissionController.service.ipFamilies Service IP families
ipFamilies: []
## @param admissionController.service.sessionAffinity Control where client requests go, to the same pod or round-robin
sessionAffinity: None
## @param admissionController.service.sessionAffinityConfig Additional settings for the sessionAffinity
sessionAffinityConfig: {}
ports:
## @param admissionController.service.ports.https Service port for HTTPS (do not change it)
https: 443
## @param admissionController.resources CPU/Memory resource requests/limits
resources: {}
# limits:
# cpu: 200m
# memory: 512Mi
# requests:
# cpu: 50m
# memory: 256Mi
## @param admissionController.nodeSelector Node labels for pod assignment
nodeSelector: {}
## @param admissionController.tolerations Tolerations for pod assignment
tolerations: []
## @param admissionController.affinity Map of node/pod affinities
affinity: {}
## @extra admissionController.extraArgs [object] Additional container arguments
## @param admissionController.extraArgs.v Number for the log level verbosity
extraArgs:
# kube-api-burst: 10
# kube-api-qps: 5
v: 2
# vpa-object-namespace: ""
# webhook-timeout-seconds: 30
## @param admissionController.extraEnvVars Additional container environment variables
extraEnvVars: []
# - name: MY-NAME
# value: "MY-VALUE"
## @param admissionController.extraEnvVarsCM Name of existing ConfigMap containing additional container environment variables
extraEnvVarsCM:
## @param admissionController.extraEnvVarsSecret Name of existing Secret containing additional container environment variables
extraEnvVarsSecret:
## @param admissionController.extraVolumes Optionally specify extra list of additional volumes
extraVolumes: []
## @param admissionController.extraVolumeMounts Optionally specify extra list of additional volumeMounts
extraVolumeMounts: []
metrics:
service:
## @param admissionController.metrics.service.annotations Metrics service annotations
annotations: {}
## @param admissionController.metrics.service.type Metrics service type
type: ClusterIP
## @param admissionController.metrics.service.clusterIP Metrics static cluster IP address or None for headless service when service type is ClusterIP
clusterIP:
# clusterIP: 10.43.0.100
## @param admissionController.metrics.service.ipFamilyPolicy Metrics service IP family policy
ipFamilyPolicy: ""
## @param admissionController.metrics.service.ipFamilies Metrics service IP families
ipFamilies: []
ports:
## @param admissionController.metrics.service.ports.metrics Metrics service port for Metrics
metrics: 8944
serviceMonitor:
## @param admissionController.metrics.serviceMonitor.enabled Specifies whether a service monitor should be created
enabled: false
## @param admissionController.metrics.serviceMonitor.namespace Namespace in which to create the service monitor
namespace: ""
## @param admissionController.metrics.serviceMonitor.annotations Service monitor annotations
annotations: {}
## @param admissionController.metrics.serviceMonitor.labels Additional service monitor labels
labels: {}
## @param admissionController.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in Prometheus
jobLabel: ""
## @param admissionController.metrics.serviceMonitor.honorLabels Whether to choose the metrics labels on collisions with target labels
honorLabels: false
## @param admissionController.metrics.serviceMonitor.interval Interval at which metrics should be scraped
interval: ""
## @param admissionController.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
scrapeTimeout: ""
## @param admissionController.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
metricRelabelings: []
## @param admissionController.metrics.serviceMonitor.relabelings Specify general relabeling
relabelings: []
tls:
## @param admissionController.tls.caCert TLS CA certificate (Generated using the `genCA` function if not set)
caCert: ""
## @param admissionController.tls.cert TLS certificate (Generated using the `genSignedCert` function if not set)
cert: ""
## @param admissionController.tls.key TLS private key (Generated using the `genSignedCert` function if not set)
key: ""
## @param admissionController.tls.existingSecret Name of existing TLS Secret to use
existingSecret: ""
## @section Recommender parameters
recommender:
## @param recommender.replicaCount Number of replicas
replicaCount: 1
image:
## @param recommender.image.registry Image registry
registry: registry.k8s.io
## @param recommender.image.repository Image repository
repository: autoscaling/vpa-recommender
## @param recommender.image.tag Image tag
tag: 1.3.0
## @param recommender.image.digest Image digest
digest: ""
## @param recommender.image.pullPolicy Image pull policy
pullPolicy: IfNotPresent
pdb:
## @param recommender.pdb.create Specifies whether a pod disruption budget should be created
create: false
## @param recommender.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
minAvailable: 1
## @param recommender.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
maxUnavailable:
# maxUnavailable: 1
serviceAccount:
## @param recommender.serviceAccount.create Specifies whether a service account should be created
create: true
## @param recommender.serviceAccount.annotations Service account annotations
annotations: {}
## @param recommender.serviceAccount.name The name of the service account to use (Generated using the `vertical-pod-autoscaler.fullname` template if not set)
name:
## @param recommender.enableServiceLinks Whether information about services should be injected into pod's environment variable
enableServiceLinks: false
## @param recommender.hostAliases Pod host aliases
hostAliases: []
## @param recommender.deploymentAnnotations Additional deployment annotations
deploymentAnnotations: {}
## @param recommender.podAnnotations Additional pod annotations
podAnnotations: {}
## @param recommender.podLabels Additional pod labels
podLabels: {}
## @extra recommender.podSecurityContext Pod security context
## @param recommender.podSecurityContext.runAsNonRoot Whether the container must run as a non-root user
## @param recommender.podSecurityContext.runAsUser The UID to run the entrypoint of the container process
## @param recommender.podSecurityContext.runAsGroup The GID to run the entrypoint of the container process
podSecurityContext:
# fsGroup: 2000
runAsNonRoot: true
runAsUser: 65534
runAsGroup: 65534
## @param recommender.priorityClassName Priority class name
priorityClassName:
# priorityClassName : high-priority
## @param recommender.runtimeClassName Runtime class name
runtimeClassName: ""
## @param recommender.topologySpreadConstraints Topology Spread Constraints for pod assignment
topologySpreadConstraints: []
## @param recommender.securityContext Container security context
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
containerPorts:
## @param recommender.containerPorts.metrics Container port for Metrics
metrics: 8942
livenessProbe:
## @param recommender.livenessProbe.enabled Enable liveness probe
enabled: true
## @param recommender.livenessProbe.initialDelaySeconds Delay before the liveness probe is initiated
initialDelaySeconds: 0
## @param recommender.livenessProbe.periodSeconds How often to perform the liveness probe
periodSeconds: 10
## @param recommender.livenessProbe.timeoutSeconds When the liveness probe times out
timeoutSeconds: 1
## @param recommender.livenessProbe.failureThreshold Minimum consecutive failures for the liveness probe to be considered failed after having succeeded
failureThreshold: 3
## @param recommender.livenessProbe.successThreshold Minimum consecutive successes for the liveness probe to be considered successful after having failed
successThreshold: 1
readinessProbe:
## @param recommender.readinessProbe.enabled Enable readiness probe
enabled: true
## @param recommender.readinessProbe.initialDelaySeconds Delay before the readiness probe is initiated
initialDelaySeconds: 0
## @param recommender.readinessProbe.periodSeconds How often to perform the readiness probe
periodSeconds: 10
## @param recommender.readinessProbe.timeoutSeconds When the readiness probe times out
timeoutSeconds: 1
## @param recommender.readinessProbe.failureThreshold Minimum consecutive failures for the readiness probe to be considered failed after having succeeded
failureThreshold: 3
## @param recommender.readinessProbe.successThreshold Minimum consecutive successes for the readiness probe to be considered successful after having failed
successThreshold: 1
startupProbe:
## @param recommender.startupProbe.enabled Enable startup probe
enabled: false
## @param recommender.startupProbe.initialDelaySeconds Delay before the startup probe is initiated
initialDelaySeconds: 0
## @param recommender.startupProbe.periodSeconds How often to perform the startup probe
periodSeconds: 10
## @param recommender.startupProbe.timeoutSeconds When the startup probe times out
timeoutSeconds: 1
## @param recommender.startupProbe.failureThreshold Minimum consecutive failures for the startup probe to be considered failed after having succeeded
failureThreshold: 3
## @param recommender.startupProbe.successThreshold Minimum consecutive successes for the startup probe to be considered successful after having failed
successThreshold: 1
## @param recommender.resources CPU/Memory resource requests/limits
resources: {}
# limits:
# cpu: 200m
# memory: 1024Mi
# requests:
# cpu: 50m
# memory: 512Mi
## @param recommender.nodeSelector Node labels for pod assignment
nodeSelector: {}
## @param recommender.tolerations Tolerations for pod assignment
tolerations: []
## @param recommender.affinity Map of node/pod affinities
affinity: {}
## @extra recommender.extraArgs [object] Additional container arguments
## @param recommender.extraArgs.v Number for the log level verbosity
extraArgs:
# checkpoints-gc-interval: 10m0s
# checkpoints-timeout: 1m0s
# container-name-label: name
# container-namespace-label: namespace
# container-pod-name-label: pod_name
# cpu-histogram-decay-half-life: 24h0m0s
# cpu-integer-post-processor-enabled: false
# external-metrics-cpu-metric: ""
# external-metrics-memory-metric: ""
# history-length: 8d
# history-resolution: 1h
# ignored-vpa-object-namespaces: ""
# kube-api-burst: 10
# kube-api-qps: 5
# leader-elect: false
# leader-elect-lease-duration: 15s
# leader-elect-renew-deadline: 10s
# leader-elect-resource-lock: leases
# leader-elect-resource-name: vpa-recommender
# leader-elect-resource-namespace: kube-system
# leader-elect-retry-period: 2s
# memory-aggregation-interval: 24h0m0s
# memory-aggregation-interval-count: 8
# memory-histogram-decay-half-life: 24h0m0s
# memory-saver: false
# metric-for-pod-labels: up{job="kubernetes-pods"}
# min-checkpoints: 10
# oom-bump-up-ratio: 1.2
# oom-min-bump-up-bytes: 104857600
# password: ""
# pod-label-prefix: pod_label_
# pod-name-label: kubernetes_pod_name
# pod-namespace-label: kubernetes_namespace
# pod-recommendation-min-cpu-millicores: 25
# pod-recommendation-min-memory-mb: 250
# prometheus-address: ""
# prometheus-cadvisor-job-name: kubernetes-cadvisor
# prometheus-query-timeout: 5m
# recommendation-lower-bound-cpu-percentile: 0.5
# recommendation-lower-bound-memory-percentile: 0.5
# recommendation-margin-fraction: 0.15
# recommendation-upper-bound-cpu-percentile: 0.95
# recommendation-upper-bound-memory-percentile: 0.95
# recommender-interval: 1m0s
# recommender-name: default
# storage: checkpoint
# target-cpu-percentile: 0.9
# target-memory-percentile: 0.9
# use-external-metrics: false
# username: ""
v: 2
# vpa-object-namespace: ""
## @param recommender.extraEnvVars Additional container environment variables
extraEnvVars: []
# - name: MY-NAME
# value: "MY-VALUE"
## @param recommender.extraEnvVarsCM Name of existing ConfigMap containing additional container environment variables
extraEnvVarsCM:
## @param recommender.extraEnvVarsSecret Name of existing Secret containing additional container environment variables
extraEnvVarsSecret:
## @param recommender.extraVolumes Optionally specify extra list of additional volumes
extraVolumes: []
## @param recommender.extraVolumeMounts Optionally specify extra list of additional volumeMounts
extraVolumeMounts: []
metrics:
service:
## @param recommender.metrics.service.annotations Metrics service annotations
annotations: {}
## @param recommender.metrics.service.type Metrics service type
type: ClusterIP
## @param recommender.metrics.service.clusterIP Metrics static cluster IP address or None for headless service when service type is ClusterIP
clusterIP:
# clusterIP: 10.43.0.100
## @param recommender.metrics.service.ipFamilyPolicy Metrics service IP family policy
ipFamilyPolicy: ""
## @param recommender.metrics.service.ipFamilies Metrics service IP families
ipFamilies: []
ports:
## @param recommender.metrics.service.ports.metrics Metrics service port for Metrics
metrics: 8942
serviceMonitor:
## @param recommender.metrics.serviceMonitor.enabled Specifies whether a service monitor should be created
enabled: false
## @param recommender.metrics.serviceMonitor.namespace Namespace in which to create the service monitor
namespace: ""
## @param recommender.metrics.serviceMonitor.annotations Service monitor annotations
annotations: {}
## @param recommender.metrics.serviceMonitor.labels Additional service monitor labels
labels: {}
## @param recommender.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in Prometheus
jobLabel: ""
## @param recommender.metrics.serviceMonitor.honorLabels Whether to choose the metrics labels on collisions with target labels
honorLabels: false
## @param recommender.metrics.serviceMonitor.interval Interval at which metrics should be scraped
interval: ""
## @param recommender.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
scrapeTimeout: ""
## @param recommender.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
metricRelabelings: []
## @param recommender.metrics.serviceMonitor.relabelings Specify general relabeling
relabelings: []
## @section Updater parameters
updater:
## @param updater.enabled Enable the component
enabled: true
## @param updater.replicaCount Number of replicas
replicaCount: 1
image:
## @param updater.image.registry Image registry
registry: registry.k8s.io
## @param updater.image.repository Image repository
repository: autoscaling/vpa-updater
## @param updater.image.tag Image tag
tag: 1.3.0
## @param updater.image.digest Image digest
digest: ""
## @param updater.image.pullPolicy Image pull policy
pullPolicy: IfNotPresent
pdb:
## @param updater.pdb.create Specifies whether a pod disruption budget should be created
create: false
## @param updater.pdb.minAvailable Minimum number/percentage of pods that should remain scheduled
minAvailable: 1
## @param updater.pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable
maxUnavailable:
# maxUnavailable: 1
serviceAccount:
## @param updater.serviceAccount.create Specifies whether a service account should be created
create: true
## @param updater.serviceAccount.annotations Service account annotations
annotations: {}
## @param updater.serviceAccount.name The name of the service account to use (Generated using the `vertical-pod-autoscaler.fullname` template if not set)
name:
## @param updater.enableServiceLinks Whether information about services should be injected into pod's environment variable
enableServiceLinks: false
## @param updater.hostAliases Pod host aliases
hostAliases: []
## @param updater.deploymentAnnotations Additional deployment annotations
deploymentAnnotations: {}
## @param updater.podAnnotations Additional pod annotations
podAnnotations: {}
## @param updater.podLabels Additional pod labels
podLabels: {}
## @extra updater.podSecurityContext Pod security context
## @param updater.podSecurityContext.runAsNonRoot Whether the container must run as a non-root user
## @param updater.podSecurityContext.runAsUser The UID to run the entrypoint of the container process
## @param updater.podSecurityContext.runAsGroup The GID to run the entrypoint of the container process
podSecurityContext:
# fsGroup: 2000
runAsNonRoot: true
runAsUser: 65534
runAsGroup: 65534
## @param updater.priorityClassName Priority class name
priorityClassName:
# priorityClassName : high-priority
## @param updater.runtimeClassName Runtime class name
runtimeClassName: ""
## @param updater.topologySpreadConstraints Topology Spread Constraints for pod assignment
topologySpreadConstraints: []
## @param updater.securityContext Container security context
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
containerPorts:
## @param updater.containerPorts.metrics Container port for Metrics
metrics: 8943
livenessProbe:
## @param updater.livenessProbe.enabled Enable liveness probe
enabled: true
## @param updater.livenessProbe.initialDelaySeconds Delay before the liveness probe is initiated
initialDelaySeconds: 0
## @param updater.livenessProbe.periodSeconds How often to perform the liveness probe
periodSeconds: 10
## @param updater.livenessProbe.timeoutSeconds When the liveness probe times out
timeoutSeconds: 1
## @param updater.livenessProbe.failureThreshold Minimum consecutive failures for the liveness probe to be considered failed after having succeeded
failureThreshold: 3
## @param updater.livenessProbe.successThreshold Minimum consecutive successes for the liveness probe to be considered successful after having failed
successThreshold: 1
readinessProbe:
## @param updater.readinessProbe.enabled Enable readiness probe
enabled: true
## @param updater.readinessProbe.initialDelaySeconds Delay before the readiness probe is initiated
initialDelaySeconds: 0
## @param updater.readinessProbe.periodSeconds How often to perform the readiness probe
periodSeconds: 10
## @param updater.readinessProbe.timeoutSeconds When the readiness probe times out
timeoutSeconds: 1
## @param updater.readinessProbe.failureThreshold Minimum consecutive failures for the readiness probe to be considered failed after having succeeded
failureThreshold: 3
## @param updater.readinessProbe.successThreshold Minimum consecutive successes for the readiness probe to be considered successful after having failed
successThreshold: 1
startupProbe:
## @param updater.startupProbe.enabled Enable startup probe
enabled: false
## @param updater.startupProbe.initialDelaySeconds Delay before the startup probe is initiated
initialDelaySeconds: 0
## @param updater.startupProbe.periodSeconds How often to perform the startup probe
periodSeconds: 10
## @param updater.startupProbe.timeoutSeconds When the startup probe times out
timeoutSeconds: 1
## @param updater.startupProbe.failureThreshold Minimum consecutive failures for the startup probe to be considered failed after having succeeded
failureThreshold: 3
## @param updater.startupProbe.successThreshold Minimum consecutive successes for the startup probe to be considered successful after having failed
successThreshold: 1
## @param updater.resources CPU/Memory resource requests/limits
resources: {}
# limits:
# cpu: 200m
# memory: 1024Mi
# requests:
# cpu: 50m
# memory: 512Mi
## @param updater.nodeSelector Node labels for pod assignment
nodeSelector: {}
## @param updater.tolerations Tolerations for pod assignment
tolerations: []
## @param updater.affinity Map of node/pod affinities
affinity: {}
## @extra updater.extraArgs [object] Additional container arguments
## @param updater.extraArgs.v Number for the log level verbosity
extraArgs:
# evict-after-oom-threshold: 10m0s
# eviction-rate-burst: 1
# eviction-rate-limit: -1
# eviction-tolerance: 0.5
# ignored-vpa-object-namespaces: ""
# in-recommendation-bounds-eviction-lifetime-threshold: 12h0m0s
# kube-api-burst: 10
# kube-api-qps: 5
# leader-elect: false
# leader-elect-lease-duration: 15s
# leader-elect-renew-deadline: 10s
# leader-elect-resource-lock: leases
# leader-elect-resource-name: vpa-updater
# leader-elect-resource-namespace: kube-system
# leader-elect-retry-period: 2s
# min-replicas: 2
# pod-update-threshold: 0.1
# updater-interval: 1m0s
# use-admission-controller-status: true
v: 2
# vpa-object-namespace: ""
## @param updater.extraEnvVars Additional container environment variables
extraEnvVars: []
# - name: MY-NAME
# value: "MY-VALUE"
## @param updater.extraEnvVarsCM Name of existing ConfigMap containing additional container environment variables
extraEnvVarsCM:
## @param updater.extraEnvVarsSecret Name of existing Secret containing additional container environment variables
extraEnvVarsSecret:
## @param updater.extraVolumes Optionally specify extra list of additional volumes
extraVolumes: []
## @param updater.extraVolumeMounts Optionally specify extra list of additional volumeMounts
extraVolumeMounts: []
metrics:
service:
## @param updater.metrics.service.annotations Metrics service annotations
annotations: {}
## @param updater.metrics.service.type Metrics service type
type: ClusterIP
## @param updater.metrics.service.clusterIP Metrics static cluster IP address or None for headless service when service type is ClusterIP
clusterIP:
# clusterIP: 10.43.0.100
## @param updater.metrics.service.ipFamilyPolicy Metrics service IP family policy
ipFamilyPolicy: ""
## @param updater.metrics.service.ipFamilies Metrics service IP families
ipFamilies: []
ports:
## @param updater.metrics.service.ports.metrics Metrics service port for Metrics
metrics: 8943
serviceMonitor:
## @param updater.metrics.serviceMonitor.enabled Specifies whether a service monitor should be created
enabled: false
## @param updater.metrics.serviceMonitor.namespace Namespace in which to create the service monitor
namespace: ""
## @param updater.metrics.serviceMonitor.annotations Service monitor annotations
annotations: {}
## @param updater.metrics.serviceMonitor.labels Additional service monitor labels
labels: {}
## @param updater.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in Prometheus
jobLabel: ""
## @param updater.metrics.serviceMonitor.honorLabels Whether to choose the metrics labels on collisions with target labels
honorLabels: false
## @param updater.metrics.serviceMonitor.interval Interval at which metrics should be scraped
interval: ""
## @param updater.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended
scrapeTimeout: ""
## @param updater.metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics
metricRelabelings: []
## @param updater.metrics.serviceMonitor.relabelings Specify general relabeling
relabelings: []
## @section CRDs parameters
crds:
## @param crds.enabled Enable CRDs
enabled: true
image:
## @param crds.image.registry Image registry
registry: docker.io
## @param crds.image.repository Image repository
repository: bitnami/kubectl
## @param crds.image.tag Image tag
tag: 1.29.3
## @param crds.image.digest Image digest
digest: ""
## @param crds.image.pullPolicy Image pull policy
pullPolicy: IfNotPresent
## @param crds.podAnnotations Additional pod annotations
podAnnotations: {}
## @param crds.podLabels Additional pod labels
podLabels: {}
## @extra crds.podSecurityContext Pod security context
## @param crds.podSecurityContext.runAsNonRoot Whether the container must run as a non-root user
## @param crds.podSecurityContext.runAsUser The UID to run the entrypoint of the container process
## @param crds.podSecurityContext.runAsGroup The GID to run the entrypoint of the container process
podSecurityContext:
# fsGroup: 2000
runAsNonRoot: true
runAsUser: 1001
runAsGroup: 1001
## @param crds.securityContext Container security context
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
## @param crds.resources CPU/Memory resource requests/limits
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
## @param crds.nodeSelector Node labels for pod assignment
nodeSelector: {}
## @param crds.tolerations Tolerations for pod assignment
tolerations: []
## @param crds.affinity Map of node/pod affinities
affinity: {}
## @section Tests parameters
tests:
image:
## @param tests.image.registry Image registry
registry: ghcr.io
## @param tests.image.repository Image repository
repository: cowboysysop/pytest
## @param tests.image.tag Image tag
tag: 1.0.41
## @param tests.image.digest Image digest
digest: ""
## @param tests.image.pullPolicy Image pull policy
pullPolicy: IfNotPresent

View File

@@ -0,0 +1,28 @@
updater:
resources:
limits:
memory: 1100Mi
requests:
cpu: 200m
memory: 1100Mi
recommender:
extraArgs:
storage: prometheus
prometheus-address: http://vmselect-shortterm.tenant-root.svc.cozy.local:8480
prometheus-cadvisor-job-name: cadvisor
resources:
limits:
memory: 1600Mi
requests:
cpu: 100m
memory: 1600Mi
admissionController:
resources:
limits:
memory: 256Mi
requests:
cpu: 50m
memory: 50Mi