8d5ddc9035
This change updates the following charts to migrate CronJob resources to the batch/v1 API version, available since v1.21. [0] and to migrate PodDisruptionBudget to the policy/v1 API version, also available since v1.21. [1] - aodh (CronJob & PodDisruptionBudget) - barbican (PodDisruptionBudget) - ceilometer (PodDisruptionBudget) - cinder (CronJob & PodDisruptionBudget) - cyborg (PodDisruptionBudget) - designate (PodDisruptionBudget) - glance (PodDisruptionBudget) - heat (CronJob & PodDisruptionBudget) - horizon (PodDisruptionBudget) - Ironic (PodDisruptionBudget) - Keystone (CronJob & PodDisruptionBudget) - magnum (PodDisruptionBudget) - masakari (PodDisruptionBudget) - mistral (PodDisruptionBudget) - neutron (PodDisruptionBudget) - nova (CronJob & PodDisruptionBudget) - octavia (PodDisruptionBudget) - placement (PodDisruptionBudget) - rally (PodDisruptionBudget) - senlin (CronJob & PodDisruptionBudget) 0: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#cronjob-v125 1: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#poddisruptionbudget-v125 Change-Id: I2fc0692e1c8e2c4fa4d4ca1da96b5c6a832343fa
30 lines
952 B
YAML
30 lines
952 B
YAML
{{/*
|
|
Copyright 2019 Samsung Electronics Co., Ltd.
|
|
|
|
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.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.pdb_api }}
|
|
{{- $envAll := . }}
|
|
---
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: octavia-api
|
|
spec:
|
|
minAvailable: {{ .Values.pod.lifecycle.disruption_budget.api.min_available }}
|
|
selector:
|
|
matchLabels:
|
|
{{ tuple $envAll "octavia" "api" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 6 }}
|
|
{{- end }}
|