-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move into separate kustomization files to scale better
- Loading branch information
Showing
11 changed files
with
23 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
namespace: kerberos-agent | ||
resources: | ||
- kerberos-agent-deployment.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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
namespace: kerberos-factory | ||
metadata: | ||
name: factory | ||
spec: | ||
|
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,6 @@ | ||
namespace: kerberos-factory | ||
resources: | ||
- ../mongodb/mongodb-configmap.yaml | ||
- kerberos-factory-deployment.yaml | ||
- kerberos-factory-service.yaml | ||
- kerberos-factory-clusterrole.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,4 @@ | ||
namespace: kerberos-hub | ||
resources: | ||
- kerberos-hub-nodeports.yaml | ||
- kerberos-hub-import-database-job.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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
resources: | ||
- namespaces.yaml | ||
- prometheus/base.yaml | ||
- mongodb/mongodb-configmap.yaml | ||
- factory/kerberos-factory-deployment.yaml | ||
- factory/kerberos-factory-service.yaml | ||
- factory/kerberos-factory-clusterrole.yaml | ||
- vault/kerberos-vault-deployment.yaml | ||
- vault/kerberos-vault-service.yaml | ||
- hub/kerberos-hub-nodeports.yaml | ||
- hub/kerberos-hub-import-database-job.yaml | ||
- agent | ||
- factory | ||
- vault | ||
- hub |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
namespace: kerberos-factory | ||
metadata: | ||
name: mongodb | ||
data: | ||
|
@@ -17,24 +15,4 @@ data: | |
MONGODB_HOST: "mongodb.mongodb" | ||
MONGODB_DATABASE_CREDENTIALS: "admin" | ||
MONGODB_USERNAME: "root" | ||
MONGODB_PASSWORD: "yourpassword" | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
namespace: kerberos-vault | ||
metadata: | ||
name: mongodb | ||
data: | ||
# This is the mongodb database where data will be stored, you might use a different name if you want. | ||
MONGODB_DATABASE_STORAGE: "KerberosStorage" | ||
MONGODB_DATABASE_FACTORY: "KerberosFactory" | ||
MONGODB_DATABASE_HUB: "Kerberos" | ||
# MongoDB URI (for example for a SaaS service like MongoDB Atlas) | ||
# If uri is set, the below properties are not used (host, adminDatabase, username, password) | ||
#MONGODB_URI: "mongodb+srv://xx:[email protected]/?retryWrites=true&w=majority&appName=xxx" | ||
|
||
# If you do not wish to use the URI, you can specify the individual values. | ||
MONGODB_HOST: "mongodb.mongodb" | ||
MONGODB_DATABASE_CREDENTIALS: "admin" | ||
MONGODB_USERNAME: "root" | ||
MONGODB_PASSWORD: "yourpassword" | ||
MONGODB_PASSWORD: "yourpassword" |
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
namespace: kerberos-vault | ||
metadata: | ||
name: vault | ||
spec: | ||
|
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,5 @@ | ||
namespace: kerberos-vault | ||
resources: | ||
- ../mongodb/mongodb-configmap.yaml | ||
- kerberos-vault-deployment.yaml | ||
- kerberos-vault-service.yaml |