fix(argocd): point OIDC at the new Sentinel client_id#66
Merged
Conversation
The previous client (XwwQhdCWZ9Cn) lived in the sentinel Postgres database that got wiped during the gr-postgres recreate. Re-registering the ArgoCD app in Sentinel post-recovery produced a fresh auto-generated client_id (b9OrCRXdo1VQ). The matching clientSecret is rotated in the argocd-sentinel-oidc k8s Secret out-of-band — see the module's main.tf header comment.
Contributor
Terraform plan:
|
| step | result |
|---|---|
| fmt | success |
| init | success |
| validate | success |
| plan | failure |
plan output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The previous client (`XwwQhdCWZ9Cn`) lived in the sentinel Postgres database that got wiped during the gr-postgres recreate. Re-registering the ArgoCD app in Sentinel post-recovery produced a fresh auto-generated client_id (`b9OrCRXdo1VQ`).
After this merges
```bash
gh workflow run terraform-apply.yml -f env=prod -R Gaucho-Racing/infrastructure
```
```bash
kubectl -n argocd delete secret argocd-sentinel-oidc
kubectl -n argocd create secret generic argocd-sentinel-oidc \
--from-literal=oidc.clientSecret=''
kubectl -n argocd label secret argocd-sentinel-oidc \
app.kubernetes.io/part-of=argocd
kubectl -n argocd rollout restart deploy argocd-server
```
Test plan