-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update netpols and swap postgres chart (#74)
## Description Lock down and add ability to configure network policies. Swap dev-postgres chart to operator in line with other packages. ## Related Issue Fixes # [67](#67) ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) Release-As: v9.9.2-uds.1
- Loading branch information
1 parent
fbbae9d
commit a72bc8e
Showing
9 changed files
with
122 additions
and
44 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 |
---|---|---|
@@ -1,6 +1,15 @@ | ||
variables: | ||
dev-postgres: | ||
db_username: "sonarqube" | ||
db_name: "sonarqubedb" | ||
sonarqube: | ||
sonarqube_db_endpoint: "postgresql.dev-postgres.svc.cluster.local" | ||
postgres-operator: | ||
postgresql: | ||
enabled: true # Set to false to not create the PostgreSQL resource | ||
teamId: "uds" | ||
volume: | ||
size: "10Gi" | ||
numberOfInstances: 2 | ||
users: | ||
sonarqube.sonarqube: [] # database owner | ||
databases: | ||
sonarqubedb: sonarqube.sonarqube | ||
version: "13" | ||
ingress: | ||
remoteGenerated: Anywhere |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
kind: Namespace | ||
apiVersion: v1 | ||
metadata: | ||
name: sonarqube |
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 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/defenseunicorns/zarf/main/zarf.schema.json | ||
kind: ZarfPackageConfig | ||
metadata: | ||
name: dev-namespace | ||
description: "create namespaces for cross-ns secret functionality of pg operator" | ||
version: 0.1.0 | ||
|
||
components: | ||
- name: deploy-namespace-for-cross-ns-secret | ||
required: true | ||
manifests: | ||
- name: dev-namespace | ||
files: | ||
- ns.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