[bitnami/harbor] Fix apiVersion for nginx and pullPolicy for chartmusuem

This commit is contained in:
Juan Ariza Toledano
2019-09-20 14:44:31 +00:00
parent 2640e9a743
commit c085d396a0
5 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: harbor
version: 2.6.8
version: 2.6.9
appVersion: 1.8.3
description: Harbor is an an open source trusted cloud native registry project that stores, signs, and scans content
keywords:

View File

@@ -42,7 +42,7 @@ spec:
containers:
- name: chartmuseum
image: "{{ template "harbor.chartMuseumImage" . }}"
imagePullPolicy: {{ .Values.chartMuseumImage.imagePullPolicy | quote }}
imagePullPolicy: {{ .Values.chartMuseumImage.pullPolicy | quote }}
{{- if .Values.chartmuseum.livenessProbe.enabled }}
livenessProbe:
httpGet:

View File

@@ -1,5 +1,5 @@
{{- if ne .Values.service.type "Ingress" }}
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
name: "{{ template "harbor.nginx" . }}"

View File

@@ -30,7 +30,7 @@ spec:
containers:
- name: notary-server
image: "{{ template "harbor.notaryServerImage" . }}"
imagePullPolicy: {{ .Values.notaryServerImage.pullPolicy }}
imagePullPolicy: {{ .Values.notaryServerImage.pullPolicy | quote }}
{{- if .Values.notary.server.resources }}
resources: {{ toYaml .Values.notary.server.resources | nindent 10 }}
{{- end }}

View File

@@ -26,7 +26,7 @@ spec:
containers:
- name: notary-signer
image: "{{ template "harbor.notarySignerImage" . }}"
imagePullPolicy: {{ .Values.notarySignerImage.pullPolicy }}
imagePullPolicy: {{ .Values.notarySignerImage.pullPolicy | quote }}
{{- if .Values.notary.signer.resources }}
resources:
{{ toYaml .Values.notary.signer.resources | nindent 10 }}