25aa369025
This change adds cleanup mechanism to archive by following steps: 1) add archive_cleanup.sh under /tmp directory 2) through the start.sh this script will be triggered 3) It runs every hour, checking utilization of archive dir 4) If it is above threshold it deletes half of old files Change-Id: I918284b0aa5a698a6028b9807fcbf6559ef0ff45
43 lines
2.0 KiB
YAML
43 lines
2.0 KiB
YAML
{{/*
|
|
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.configmap_bin }}
|
|
{{- $envAll := . }}
|
|
{{- $configMapBinName := printf "%s-%s" $envAll.Release.Name "etcd-bin" }}
|
|
---
|
|
apiVersion: v1
|
|
{{/* Note: this is a secret because credentials must be rendered into the password script. */}}
|
|
kind: Secret
|
|
metadata:
|
|
name: postgresql-bin
|
|
type: Opaque
|
|
data:
|
|
{{- if .Values.images.local_registry.active }}
|
|
image-repo-sync.sh: {{- include "helm-toolkit.scripts.image_repo_sync" . | b64enc }}
|
|
{{- end }}
|
|
start.sh: {{ tuple "bin/_start.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }}
|
|
readiness.sh: {{ tuple "bin/_readiness.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }}
|
|
archive_cleanup.sh: {{ tuple "bin/_postgresql_archive_cleanup.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }}
|
|
db_test.sh: {{ tuple "bin/_db_test.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }}
|
|
{{- if .Values.conf.backup.enabled }}
|
|
backup_postgresql.sh: {{ tuple "bin/_backup_postgresql.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }}
|
|
restore_postgresql.sh: {{ tuple "bin/_restore_postgresql.sh.tpl" . | include "helm-toolkit.utils.template" | b64enc }}
|
|
backup_main.sh: {{ include "helm-toolkit.scripts.db-backup-restore.backup_main" . | b64enc }}
|
|
restore_main.sh: {{ include "helm-toolkit.scripts.db-backup-restore.restore_main" . | b64enc }}
|
|
{{- end }}
|
|
{{- if .Values.manifests.job_ks_user }}
|
|
ks-user.sh: {{ include "helm-toolkit.scripts.keystone_user" . | b64enc }}
|
|
{{- end }}
|
|
{{- end }}
|