Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TLS volume mount for RDS #277

Merged
merged 3 commits into from
Nov 19, 2024
Merged
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
8 changes: 8 additions & 0 deletions deploy/kessel-relations-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,16 @@
spec:
template:
spec:
volumes:
- name: rds-tls
secret:
secretName: kessel-relations-spicedb
containers:
- name: spicedb
volumeMounts:
- name: rds-tls
mountPath: /etc/tls/rds.pem
subPath: db.ca_cert
resources:
requests:
memory: ${SPICEDB_REQUESTS_MEMORY}
Expand All @@ -31,7 +39,7 @@
env:
- name: SPICEDB_DATASTORE_REVISION_QUANTIZATION_INTERVAL
value: ${SPICEDB_QUANTIZATION_INTERVAL}
- name: SPICEDB_DATASTORE_REVISION_QUANTIZATION_MAX_STALENESS_PERCENT

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

View workflow job for this annotation

GitHub Actions / lint-yaml

42:81 [line-length] line too long (89 > 80 characters)
value: ${SPICEDB_QUANTIZATION_STALENESS_PERCENT}
- name: SPICEDB_DATASTORE_CONN_POOL_READ_MAX_OPEN
value: ${SPICEDB_DATASTORE_MAX_CONN_OPEN}
Expand Down Expand Up @@ -118,7 +126,7 @@
required: true
- description: App Image
name: RELATIONS_IMAGE
value: quay.io/redhat-services-prod/project-kessel-tenant/kessel-relations/relations-api

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

View workflow job for this annotation

GitHub Actions / lint-yaml

129:81 [line-length] line too long (92 > 80 characters)
- description: Image Tag
name: IMAGE_TAG
required: true
Expand Down
Loading