-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: separate out Redis from the Nautobot deploy
The Nautobot chart shouldn't deploy its own copy of Redis so break that out. This simplifies secret handling of the Redis password by the Nautobot chart as well. The service account is properly created by the Redis chart as well so that can be removed.
- Loading branch information
Showing
9 changed files
with
61 additions
and
408 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: nautobot-redis | ||
spec: | ||
project: understack | ||
source: | ||
repoURL: https://github.com/rackerlabs/understack.git | ||
path: components/08-nautobot-redis/ | ||
targetRevision: HEAD | ||
destination: | ||
server: "https://kubernetes.default.svc" | ||
namespace: nautobot | ||
syncPolicy: | ||
automated: | ||
selfHeal: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
helmGlobals: | ||
chartHome: ../../charts/ | ||
helmCharts: | ||
- name: redis | ||
includeCRDs: true | ||
namespace: nautobot | ||
valuesFile: values.yaml | ||
releaseName: nautobot-redis | ||
version: 18.12.1 | ||
repo: https://charts.bitnami.com/bitnami |
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,3 @@ | ||
auth: | ||
existingSecret: nautobot-redis | ||
existingSecretPasswordKey: redis-password |
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
Oops, something went wrong.