-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add secret information to release-monitor (#5154)
this PR adds the secret reference so the release-monitor can use it to check the release required endpoints Signed-off-by: Leandro Mendes <[email protected]>
- Loading branch information
1 parent
87a1f7a
commit 38bbfa0
Showing
3 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
17 changes: 17 additions & 0 deletions
17
components/release/base/monitor/staging/patches/env-secrets-patch.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: release-service-monitor-deployment | ||
namespace: release-service | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: release-service-monitor | ||
env: | ||
- name: GITHUB_GIT_TOKEN | ||
valueFrom: | ||
secretKeyRef: | ||
name: release-monitor-secret | ||
key: github_token | ||
|