Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion operator/charts/patroni-services/templates/cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions tests/docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cachetools==4.2.4
certifi==2024.7.4
charset-normalizer==2.0.12
click==8.1.2
Flask==2.2.5
Flask==3.1.3
Flask-RESTful==0.3.9
google-auth==2.3.3
idna==3.7
Expand Down Expand Up @@ -33,5 +33,5 @@ six==1.16.0
typing_extensions==4.2.0
urllib3==2.6.3
websocket-client==1.9.0
Werkzeug==3.1.5
Werkzeug==3.1.6
zipp==3.23.0
Loading