Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion chart/epinio/templates/service-catalog.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# These are three simple Services to fill the Service Catalog
{{ if .Values.serviceCatalog.enableDevServices }}
---
apiVersion: application.epinio.io/v1
Expand All @@ -23,6 +22,12 @@ spec:
url: "https://charts.bitnami.com/bitnami"
values: |-
{{- template "epinio.catalog-service-values" . }}
image:
registry: docker.io
repository: postgres
tag: "18.0"
digest: ""
pullPolicy: IfNotPresent
---
apiVersion: application.epinio.io/v1
kind: Service
Expand All @@ -46,6 +51,12 @@ spec:
url: "https://charts.bitnami.com/bitnami"
values: |-
{{- template "epinio.catalog-service-values" . }}
image:
registry: docker.io
repository: mysql
tag: "9.4.0"
digest: ""
pullPolicy: IfNotPresent
---
apiVersion: application.epinio.io/v1
kind: Service
Expand All @@ -69,6 +80,12 @@ spec:
url: "https://charts.bitnami.com/bitnami"
values: |-
{{- template "epinio.catalog-service-values" . }}
image:
registry: docker.io
repository: valkey/valkey
tag: "9.0-alpine"
digest: ""
pullPolicy: IfNotPresent
---
apiVersion: application.epinio.io/v1
kind: Service
Expand All @@ -92,6 +109,12 @@ spec:
url: https://charts.bitnami.com/bitnami
values: |-
{{- template "epinio.catalog-service-values" . }}
image:
registry: docker.io
repository: rabbitmq
tag: "4.1.4"
digest: ""
pullPolicy: IfNotPresent
---
apiVersion: application.epinio.io/v1
kind: Service
Expand All @@ -115,4 +138,11 @@ spec:
url: https://charts.bitnami.com/bitnami
values: |-
{{- template "epinio.catalog-service-values" . }}
image:
registry: docker.io
repository: mongo
tag: "noble"
digest: ""
pullPolicy: IfNotPresent

{{- end }}
Loading