Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- '.github/**'
- '.infrastructure/standbycheck/**'
- '.infrastructure/crunchy-postgres/**'
- '.infrastructure/syncthing/**'
workflow_dispatch:

permissions:
Expand Down
1 change: 1 addition & 0 deletions infrastructure/syncthing/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ spec:
value: "connections:ERROR,model:WARN"
- name: oauth-proxy
image: {{ .Values.deployment.oAuthProxy.image.repository }}:{{ .Values.deployment.oAuthProxy.image.tag }}
imagePullPolicy: Always
args:
- '--provider=openshift'
- '--pass-basic-auth=false'
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/syncthing/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fullnameOverride: dev-drivebc-syncthing

image:
repository: syncthing/syncthing # Official Syncthing image
tag: "2.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags
tag: "2.1.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags

createTransportClaim: true # Set to true in Gold, and false for GoldDR as it will be automatically created there once installed on Gold

Expand Down Expand Up @@ -41,7 +41,7 @@ deployment:
memory: 64Mi

persistentVolumeClaim:
size: 2Gi
size: 3Gi
storageClassName: netapp-block-standard

route:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/syncthing/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fullnameOverride: prod-drivebc-syncthing

image:
repository: syncthing/syncthing # Official Syncthing image
tag: "2.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags
tag: "2.1.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags

createTransportClaim: true # Set to true in Gold, and false for GoldDR as it will be automatically created there once installed on Gold

Expand Down
4 changes: 2 additions & 2 deletions infrastructure/syncthing/values-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fullnameOverride: test-drivebc-syncthing

image:
repository: syncthing/syncthing # Official Syncthing image
tag: "2.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags
tag: "2.1.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags

createTransportClaim: true # Set to true in Gold, and false for GoldDR as it will be automatically created there once installed on Gold

Expand Down Expand Up @@ -41,7 +41,7 @@ deployment:
memory: 64Mi

persistentVolumeClaim:
size: 2Gi
size: 3Gi
storageClassName: netapp-block-standard

route:
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/syncthing/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fullnameOverride: uat-drivebc-syncthing

image:
repository: syncthing/syncthing # Official Syncthing image
tag: "2.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags
tag: "2.1.1" # Syncthing tag. Check https://hub.docker.com/r/syncthing/syncthing/tags for available tags

createTransportClaim: true # Set to true in Gold, and false for GoldDR as it will be automatically created there once installed on Gold

Expand Down
Loading