mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-22 02:40:35 +00:00
Update versioning and image repositories (#44)
* Update versioning and image repositories Update helm charts to follow the submariner versioning, and include the image repositories by default. Signed-off-by: Miguel Angel Ajo <majopela@redhat.com> * Update final version Signed-off-by: Miguel Angel Ajo Pelayo <majopela@redhat.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
name: submariner-k8s-broker
|
name: submariner-k8s-broker
|
||||||
version: 0.0.2
|
version: 0.4.1
|
||||||
appVersion: v0.0.2
|
appVersion: 0.4.1
|
||||||
description: Submariner Kubernetes Broker
|
description: Submariner Kubernetes Broker
|
||||||
keywords:
|
keywords:
|
||||||
home: https://submariner-io.github.io/
|
home: https://submariner-io.github.io/
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
name: submariner
|
name: submariner
|
||||||
version: 0.0.4
|
version: 0.4.0
|
||||||
appVersion: v0.0.4
|
appVersion: 0.4.0
|
||||||
description: k8s 1.16.x support
|
description: Submariner enables direct networking between Pods and Services in different Kubernetes clusters
|
||||||
keywords:
|
keywords:
|
||||||
home: https://submariner-io.github.io/
|
home: https://submariner-io.github.io/
|
||||||
sources:
|
sources:
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ spec:
|
|||||||
value: "{{ .Values.leadership.renewDeadline }}"
|
value: "{{ .Values.leadership.renewDeadline }}"
|
||||||
- name: LEADERSHIP_RETRYPERIOD
|
- name: LEADERSHIP_RETRYPERIOD
|
||||||
value: "{{ .Values.leadership.retryPeriod }}"
|
value: "{{ .Values.leadership.retryPeriod }}"
|
||||||
image: {{ .Values.engine.image.repository }}:{{ .Values.engine.image.tag }}
|
image: {{ .Values.engine.image.repository }}:{{ default .Chart.AppVersion .Values.engine.image.tag }}
|
||||||
imagePullPolicy: {{ .Values.engine.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.engine.image.pullPolicy }}
|
||||||
name: submariner
|
name: submariner
|
||||||
resources:
|
resources:
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ spec:
|
|||||||
submariner.io/gateway: 'true'
|
submariner.io/gateway: 'true'
|
||||||
containers:
|
containers:
|
||||||
- name: {{ template "submariner.fullname" . }}-globalnet
|
- name: {{ template "submariner.fullname" . }}-globalnet
|
||||||
image: {{ .Values.globalnet.image.repository }}:{{ .Values.globalnet.image.tag }}
|
image: {{ .Values.globalnet.image.repository }}:{{ default .Chart.AppVersion .Values.globalnet.image.tag }}
|
||||||
imagePullPolicy: {{ .Values.globalnet.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.globalnet.image.pullPolicy }}
|
||||||
env:
|
env:
|
||||||
- name: SUBMARINER_CLUSTERID
|
- name: SUBMARINER_CLUSTERID
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ spec:
|
|||||||
- args:
|
- args:
|
||||||
- -conf
|
- -conf
|
||||||
- /etc/coredns/Corefile
|
- /etc/coredns/Corefile
|
||||||
image: {{ .Values.lighthouseCoredns.image.repository }}:{{ .Values.lighthouseCoredns.image.tag }}
|
image: {{ .Values.lighthouseCoredns.image.repository }}:{{ default .Chart.AppVersion .Values.lighthouseCoredns.image.tag }}
|
||||||
imagePullPolicy: {{ .Values.lighthouseCoredns.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.lighthouseCoredns.image.pullPolicy }}
|
||||||
name: {{ template "submariner.lighthouseDnsName" . }}
|
name: {{ template "submariner.lighthouseDnsName" . }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ spec:
|
|||||||
value: "{{ .Values.broker.ca }}"
|
value: "{{ .Values.broker.ca }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
name: {{ template "submariner.fullname" . }}-lighthouse-agent
|
name: {{ template "submariner.fullname" . }}-lighthouse-agent
|
||||||
image: {{ .Values.lighthouse.image.repository }}:{{ .Values.lighthouse.image.tag }}
|
image: {{ .Values.lighthouse.image.repository }}:{{ default .Chart.AppVersion .Values.lighthouse.image.tag }}
|
||||||
imagePullPolicy: {{ .Values.lighthouse.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.lighthouse.image.pullPolicy }}
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
terminationGracePeriodSeconds: 0
|
terminationGracePeriodSeconds: 0
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ spec:
|
|||||||
- name: routeagent
|
- name: routeagent
|
||||||
command:
|
command:
|
||||||
- submariner-route-agent.sh
|
- submariner-route-agent.sh
|
||||||
image: {{ .Values.routeAgent.image.repository }}:{{ .Values.routeAgent.image.tag }}
|
image: {{ .Values.routeAgent.image.repository }}:{{ default .Chart.AppVersion .Values.routeAgent.image.tag }}
|
||||||
imagePullPolicy: {{ .Values.routeAgent.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.routeAgent.image.pullPolicy }}
|
||||||
env:
|
env:
|
||||||
- name: SUBMARINER_NAMESPACE
|
- name: SUBMARINER_NAMESPACE
|
||||||
|
|||||||
+12
-18
@@ -31,44 +31,38 @@ leadership:
|
|||||||
retryPeriod: 2
|
retryPeriod: 2
|
||||||
engine:
|
engine:
|
||||||
image:
|
image:
|
||||||
repository: rancher/submariner
|
repository: quay.io/submariner/submariner
|
||||||
tag: v0.0.2
|
tag: ""
|
||||||
pullPolicy: Always
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
resources: {}
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 100Mi
|
|
||||||
nodeSelectorEnabled: true
|
nodeSelectorEnabled: true
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
affinity: {}
|
affinity: {}
|
||||||
routeAgent:
|
routeAgent:
|
||||||
image:
|
image:
|
||||||
repository: rancher/submariner-route-agent
|
repository: quay.io/submariner/submariner-route-agent
|
||||||
tag: v0.0.2
|
tag: ""
|
||||||
pullPolicy: Always
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
resources: {}
|
||||||
# limits:
|
|
||||||
# cpu: 100m
|
|
||||||
# memory: 100Mi
|
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
affinity: {}
|
affinity: {}
|
||||||
globalnet:
|
globalnet:
|
||||||
image:
|
image:
|
||||||
repository: submariner-globalnet
|
repository: quay.io/submariner/submariner-globalnet
|
||||||
tag: local
|
tag: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
lighthouse:
|
lighthouse:
|
||||||
image:
|
image:
|
||||||
repository: lighthouse-agent
|
repository: quay.io/submariner/lighthouse-agent
|
||||||
tag: local
|
tag: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
lighthouseCoredns:
|
lighthouseCoredns:
|
||||||
name: ""
|
name: ""
|
||||||
image:
|
image:
|
||||||
repository: lighthouse-coredns
|
repository: quay.io/submariner/lighthouse-coredns
|
||||||
tag: local
|
tag: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
serviceAccounts:
|
serviceAccounts:
|
||||||
engine:
|
engine:
|
||||||
|
|||||||
Reference in New Issue
Block a user