Skip to content

Commit

Permalink
Re-order volume mounts and voules in deploy yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajagopalan-Ranganathan committed Nov 20, 2024
1 parent 66f3967 commit 761adce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions deploy/kessel-relations-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,13 @@ objects:
spec:
template:
spec:
volumes:
- name: rds-tls
secret:
secretName: kessel-relations-spicedb
containers:
- name: migrate
volumeMounts:
- name: rds-tls
mountPath: /etc/tls/rds.pem
subPath: db.ca_cert
- name: spicedb
volumeMounts:
- name: rds-tls
mountPath: /etc/tls/rds.pem
subPath: db.ca_cert
resources:
requests:
memory: ${SPICEDB_REQUESTS_MEMORY}
Expand All @@ -50,6 +42,14 @@ objects:
value: ${SPICEDB_DATASTORE_MAX_CONN_OPEN}
- name: SPICEDB_DATASTORE_CONN_POOL_READ_MIN_OPEN
value: ${SPICEDB_DATASTORE_MIN_CONN_OPEN}
volumeMounts:
- name: rds-tls
mountPath: /etc/tls/rds.pem
subPath: db.ca_cert
volumes:
- name: rds-tls
secret:
secretName: kessel-relations-spicedb

Check warning on line 52 in deploy/kessel-relations-deploy.yaml

View workflow job for this annotation

GitHub Actions / lint-yaml

52:81 [line-length] line too long (102 > 80 characters)

Check failure on line 52 in deploy/kessel-relations-deploy.yaml

View workflow job for this annotation

GitHub Actions / lint-yaml

52:59 [trailing-spaces] trailing spaces
- apiVersion: cloud.redhat.com/v1alpha1
kind: ClowdApp
metadata:
Expand Down

0 comments on commit 761adce

Please sign in to comment.