-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update postgres example with zarf connect & secret injection
- Loading branch information
1 parent
eca4cff
commit 3795af3
Showing
13 changed files
with
100 additions
and
76 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
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 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
14 changes: 0 additions & 14 deletions
14
examples/postgres-operator/manifests/minio-instance-ingress.yaml
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
examples/postgres-operator/manifests/minio-instance-zarf-connect.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: v1 | ||
kind: Service | ||
metadata: | ||
name: minio-console-zarf-connect | ||
namespace: minio-operator | ||
annotations: | ||
zarf.dev/connect-description: "Launch the minio console" | ||
labels: | ||
zarf.dev/connect-name: minio | ||
spec: | ||
selector: | ||
v1.min.io/tenant: zarf-minio-instance | ||
ports: | ||
- name: http-console | ||
port: 9090 | ||
protocol: TCP | ||
targetPort: 9090 |
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
examples/postgres-operator/manifests/pgadmin-zarf-connect.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,18 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: pgadmin-zarf-connect | ||
namespace: postgres-operator | ||
annotations: | ||
zarf.dev/connect-description: "Launch the pgadmin web interface" | ||
labels: | ||
zarf.dev/connect-name: pgadmin | ||
spec: | ||
selector: | ||
app.kubernetes.io/instance: zarf-pgadmin4 | ||
app.kubernetes.io/name: pgadmin4 | ||
ports: | ||
- name: http | ||
port: 80 | ||
protocol: TCP | ||
targetPort: 80 |
14 changes: 0 additions & 14 deletions
14
examples/postgres-operator/manifests/postgres-operator-ui-ingress.yaml
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
examples/postgres-operator/manifests/postgres-operator-ui-zarf-connect.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,18 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: postgres-operator-ui-zarf-connect | ||
namespace: postgres-operator | ||
annotations: | ||
zarf.dev/connect-description: "Launch the postgres opertor web interface" | ||
labels: | ||
zarf.dev/connect-name: postgres-operator-ui | ||
spec: | ||
selector: | ||
app.kubernetes.io/instance: zarf-postgres-operator-ui | ||
app.kubernetes.io/name: postgres-operator-ui | ||
ports: | ||
- name: http | ||
port: 80 | ||
protocol: TCP | ||
targetPort: 8081 |
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