mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 14:57:08 +08:00
24 lines
665 B
YAML
24 lines
665 B
YAML
{{- if not (.Capabilities.APIVersions.Has "kubeapps.com/v1alpha1") -}}
|
|
# The condition above will be true if another instance of Kubeapps is
|
|
# already installed
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: apprepositories.kubeapps.com
|
|
annotations:
|
|
"helm.sh/hook": crd-install
|
|
labels:
|
|
app: {{ template "kubeapps.apprepository.fullname" . }}
|
|
chart: {{ template "kubeapps.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
group: kubeapps.com
|
|
names:
|
|
kind: AppRepository
|
|
plural: apprepositories
|
|
shortNames:
|
|
- apprepos
|
|
version: v1alpha1
|
|
{{- end -}}
|