Skip to content

External Secrets Operator config #967

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

Merged
merged 15 commits into from
Apr 30, 2025
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
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ load-design-system-templates:
pipenv run ./scripts/load_templates.sh $(DESIGN_SYSTEM_VERSION)

lint:
pipenv check ./response_operations_ui ./tests
pipenv run isort .
pipenv run black --line-length 120 .
pipenv run djlint response_operations_ui/
pipenv run flake8 --exclude ./node_modules

lint-check: load-design-system-templates
pipenv check ./response_operations_ui ./tests

pipenv run isort . --check-only
pipenv run black --line-length 120 --check .
pipenv run djlint response_operations_ui/
Expand Down
4 changes: 2 additions & 2 deletions _infra/helm/response-operations-ui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version
version: 3.1.99
version: 3.1.100

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 3.1.99
appVersion: 3.1.100

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: rops
namespace: {{ .Values.namespace }}
spec:
secretStoreRef:
kind: ClusterSecretStore
name: gcp-secret-manager
refreshInterval: 1m
data:
- secretKey: create-account-password
remoteRef:
key: rops
property: create-account-password
version: latest
- secretKey: client-id
remoteRef:
key: rops
property: client-id
version: latest
- secretKey: client-secret
remoteRef:
key: rops
property: client-secret
version: latest
Loading