-
Notifications
You must be signed in to change notification settings - Fork 854
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apps/slack-infra: add externalsecrets
- Loading branch information
Showing
6 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
apps/slack-infra/resources/slack-event-log/externalsecrets.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,14 @@ | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: slack-event-log-config # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slack-event-log | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: slack-event-log-config # The name of the GSM secret | ||
name: config.json # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret |
14 changes: 14 additions & 0 deletions
14
apps/slack-infra/resources/slack-moderator-words/externalsecrets.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,14 @@ | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: slack-moderator-words-config # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slack-moderator-words | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: slack-moderator-words-config # The name of the GSM secret | ||
name: config.json # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret |
14 changes: 14 additions & 0 deletions
14
apps/slack-infra/resources/slack-moderator/externalsecrets.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,14 @@ | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: slack-moderator-config # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slack-moderator | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: slack-moderator-config # The name of the GSM secret | ||
name: config.json # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret |
14 changes: 14 additions & 0 deletions
14
apps/slack-infra/resources/slack-post-message/externalsecrets.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,14 @@ | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: slack-post-message-config # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slack-post-message | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: slack-post-message-config # The name of the GSM secret | ||
name: config.json # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret |
14 changes: 14 additions & 0 deletions
14
apps/slack-infra/resources/slack-welcomer/externalsecrets.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,14 @@ | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: slack-welcomer-config # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slack-welcomer | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: slack-welcomer-config # The name of the GSM secret | ||
name: config.json # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret |
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,32 @@ | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: recaptcha # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slackin | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: recaptcha-secret-key # The name of the GSM secret | ||
name: secret-key # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret | ||
- key: recaptcha-site-key # The name of the GSM secret | ||
name: site-key # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret | ||
--- | ||
apiVersion: kubernetes-client.io/v1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: slackin-token # The name of the Kubernetes Secret | ||
namespace: slack-infra | ||
labels: | ||
app: slackin | ||
spec: | ||
backendType: gcpSecretsManager | ||
projectId: kubernetes-public | ||
data: | ||
- key: slackin-token # The name of the GSM secret | ||
name: token # The key to write to in the Kubernetes Secret | ||
version: latest # The version of the GSM secret |