Skip to content

Commit

Permalink
Hm/snyk fixes adding deps (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
hectormachin authored Aug 21, 2023
1 parent cb297d4 commit 0eb6ab4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ metadata:
{{ include "local-path-provisioner.labels" . | indent 4 }}
roleRef:
apiGroup: rbac.authorization.k8s.io
{{- if .Values.singleNamespace }}
kind: Role
{{- else }}
kind: ClusterRole
{{- end }}
name: {{ template "local-path-provisioner.fullname" . }}
subjects:
- kind: ServiceAccount
Expand Down
6 changes: 3 additions & 3 deletions charts/minio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ nameOverride: ""
fullnameOverride: ""

local-path-provisioner:
enabled: true
singleNamespace: true
enabled: false
singleNamespace: false
storageClass:
provisionerName: filmdrop.io/local-minio-path-provisioner
name: local-path-class-minio
Expand Down Expand Up @@ -42,7 +42,7 @@ storage:
size: 256M
volumeBindingMode: WaitForFirstConsumer
provisioner: filmdrop.io/local-minio-path-provisioner
retainPersistentVolume: true
retainPersistentVolume: false
storageClassName: minio-retain
deployment:
name: minio
Expand Down
6 changes: 3 additions & 3 deletions charts/postgres/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ nameOverride: ""
fullnameOverride: ""

local-path-provisioner:
enabled: true
singleNamespace: true
enabled: false
singleNamespace: false
storageClass:
provisionerName: filmdrop.io/local-postgres-path-provisioner
name: local-path-class-postgres
Expand Down Expand Up @@ -42,7 +42,7 @@ storage:
size: 256M
volumeBindingMode: WaitForFirstConsumer
provisioner: filmdrop.io/local-postgres-path-provisioner
retainPersistentVolume: true
retainPersistentVolume: false
storageClassName: postgres-retain
deployment:
name: postgres
Expand Down
6 changes: 3 additions & 3 deletions charts/stac-fastapi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ nameOverride: ""
fullnameOverride: ""

local-path-provisioner:
enabled: true
singleNamespace: true
enabled: false
singleNamespace: false
storageClass:
provisionerName: filmdrop.io/local-pgstac-path-provisioner
name: local-path-class-pgstac
Expand Down Expand Up @@ -42,7 +42,7 @@ pgStac:
size: 256M
volumeBindingMode: WaitForFirstConsumer
provisioner: filmdrop.io/local-pgstac-path-provisioner
retainPersistentVolume: true
retainPersistentVolume: false
storageClassName: pgstac-retain
replicaCount: 1

Expand Down

0 comments on commit 0eb6ab4

Please sign in to comment.