diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f4d4118a..4ca2c6b3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,21 +25,11 @@ on: - "SECURITY.md" workflow_dispatch: inputs: - tags: - required: false - type: string - default: "" - description: "Tags" - dry-run: - required: true + publish_docker: + description: "Publish images to ghcr.io/netcracker" type: boolean default: false - description: "Dry run mode" - replace-symbol: required: false - type: string - default: "_" - description: "Symbol to replace in tags" permissions: contents: read diff --git a/operator/charts/patroni-services/templates/cr.yaml b/operator/charts/patroni-services/templates/cr.yaml index 33f5051b..d397a2b5 100644 --- a/operator/charts/patroni-services/templates/cr.yaml +++ b/operator/charts/patroni-services/templates/cr.yaml @@ -117,7 +117,7 @@ spec: secretAccessKey: {{ .Values.backupDaemon.s3Storage.secretAccessKey }} bucket: {{ .Values.backupDaemon.s3Storage.bucket }} prefix: {{ default "postgres" .Values.backupDaemon.s3Storage.prefix }} - untrustedCert: {{ .Values.backupDaemon.s3Storage.untrustedCert }} + untrustedCert: {{ default "true" .Values.backupDaemon.s3Storage.untrustedCert }} region: {{ .Values.backupDaemon.s3Storage.region }} {{ end }} {{ if .Values.backupDaemon.externalPv }} diff --git a/services/backup-daemon/docker/requirements.txt b/services/backup-daemon/docker/requirements.txt index db150824..e00c98fa 100644 --- a/services/backup-daemon/docker/requirements.txt +++ b/services/backup-daemon/docker/requirements.txt @@ -10,7 +10,7 @@ croniter==1.3.8 dictdiffer==0.9.0 docutils==0.20 filelock==3.20.3 -Flask==3.0.3 +Flask==3.1.3 Flask-HTTPAuth==4.8.0 Flask-RESTful==0.3.9 google-api-core==2.29.0 @@ -50,5 +50,5 @@ tzlocal==4.3 uritemplate==4.1.1 urllib3==2.6.3 websocket-client==1.4.2 -Werkzeug==3.1.5 +Werkzeug==3.1.6 zipp==3.23.0 \ No newline at end of file