mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 07:06:56 -06:00
26 lines
801 B
YAML
Executable File
26 lines
801 B
YAML
Executable File
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: {{ template "artifactory-ha.fullname" . }}-installer-info
|
|
labels:
|
|
app: {{ template "artifactory-ha.name" . }}
|
|
chart: {{ template "artifactory-ha.chart" . }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
data:
|
|
installer-info.json: |
|
|
{
|
|
"productId": "Helm_artifactory-ha/{{ .Chart.Version }}",
|
|
"features": [
|
|
{
|
|
"featureId": "ArtifactoryVersion/{{ default .Chart.AppVersion .Values.artifactory.image.version }}"
|
|
},
|
|
{
|
|
"featureId": "{{ if .Values.postgresql.enabled }}postgresql{{ else }}{{ default "derby" .Values.database.type }}{{ end }}/0.0.0"
|
|
},
|
|
{
|
|
"featureId": "Platform/{{ default "kubernetes" .Values.installer.platform }}"
|
|
}
|
|
]
|
|
}
|