Skip to content

Commit

Permalink
Release 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
innobead authored Mar 17, 2022
2 parents ae2f26b + d3ac3c2 commit 94ebc92
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 15 deletions.
4 changes: 2 additions & 2 deletions charts/longhorn/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: longhorn
version: 1.2.3
appVersion: v1.2.3
version: 1.2.4
appVersion: v1.2.4
kubeVersion: ">=1.18.0-0"
description: Longhorn is a distributed block storage system for Kubernetes.
keywords:
Expand Down
8 changes: 4 additions & 4 deletions charts/longhorn/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ questions:
label: Longhorn Manager Image Repository
group: "Longhorn Images Settings"
- variable: image.longhorn.manager.tag
default: v1.2.3
default: v1.2.4
description: "Specify Longhorn Manager Image Tag"
type: string
label: Longhorn Manager Image Tag
Expand All @@ -29,7 +29,7 @@ questions:
label: Longhorn Engine Image Repository
group: "Longhorn Images Settings"
- variable: image.longhorn.engine.tag
default: v1.2.3
default: v1.2.4
description: "Specify Longhorn Engine Image Tag"
type: string
label: Longhorn Engine Image Tag
Expand All @@ -41,7 +41,7 @@ questions:
label: Longhorn UI Image Repository
group: "Longhorn Images Settings"
- variable: image.longhorn.ui.tag
default: v1.2.3
default: v1.2.4
description: "Specify Longhorn UI Image Tag"
type: string
label: Longhorn UI Image Tag
Expand All @@ -53,7 +53,7 @@ questions:
label: Longhorn Instance Manager Image Repository
group: "Longhorn Images Settings"
- variable: image.longhorn.instanceManager.tag
default: v1_20211210
default: v1_20220303
description: "Specify Longhorn Instance Manager Image Tag"
type: string
label: Longhorn Instance Manager Image Tag
Expand Down
16 changes: 14 additions & 2 deletions charts/longhorn/templates/deployment-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,26 @@ spec:
- name: longhorn-ui
image: {{ template "registry_url" . }}{{ .Values.image.longhorn.ui.repository }}:{{ .Values.image.longhorn.ui.tag }}
imagePullPolicy: IfNotPresent
securityContext:
runAsUser: 0
volumeMounts:
- name : nginx-cache
mountPath: /var/cache/nginx/
- name : nginx-config
mountPath: /var/config/nginx/
- name: var-run
mountPath: /var/run/
ports:
- containerPort: 8000
name: http
env:
- name: LONGHORN_MANAGER_IP
value: "http://longhorn-backend:9500"
volumes:
- emptyDir: {}
name: nginx-cache
- emptyDir: {}
name: nginx-config
- emptyDir: {}
name: var-run
{{- if .Values.privateRegistry.registrySecret }}
imagePullSecrets:
- name: {{ .Values.privateRegistry.registrySecret }}
Expand Down
4 changes: 2 additions & 2 deletions charts/longhorn/templates/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: Service
metadata:
labels: {{- include "longhorn.labels" . | nindent 4 }}
name: longhorn-engine-manager
namespace: longhorn-system
namespace: {{ include "release_namespace" . }}
spec:
clusterIP: None
selector:
Expand All @@ -16,7 +16,7 @@ kind: Service
metadata:
labels: {{- include "longhorn.labels" . | nindent 4 }}
name: longhorn-replica-manager
namespace: longhorn-system
namespace: {{ include "release_namespace" . }}
spec:
clusterIP: None
selector:
Expand Down
10 changes: 5 additions & 5 deletions charts/longhorn/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ image:
longhorn:
engine:
repository: longhornio/longhorn-engine
tag: v1.2.3
tag: v1.2.4
manager:
repository: longhornio/longhorn-manager
tag: v1.2.3
tag: v1.2.4
ui:
repository: longhornio/longhorn-ui
tag: v1.2.3
tag: v1.2.4
instanceManager:
repository: longhornio/longhorn-instance-manager
tag: v1_20211210
tag: v1_20220303
shareManager:
repository: longhornio/longhorn-share-manager
tag: v1_20211020
Expand Down Expand Up @@ -182,7 +182,7 @@ ingress:
## Can replace the kubernetes.io/ingress.class annotation on v1.18+
ingressClassName: ~

host: xip.io
host: sslip.io

## Set this to true in order to enable TLS on the ingress record
## A side effect of this will be that the backend service will be connected at port 443
Expand Down

0 comments on commit 94ebc92

Please sign in to comment.