feat: add istio support to kubezero-ci/gocd
This commit is contained in:
parent
c8145d4b17
commit
5d60b366d5
@ -12,6 +12,9 @@ keywords:
|
|||||||
maintainers:
|
maintainers:
|
||||||
- name: Quarky9
|
- name: Quarky9
|
||||||
dependencies:
|
dependencies:
|
||||||
|
- name: kubezero-lib
|
||||||
|
version: ">= 0.1.4"
|
||||||
|
repository: https://zero-down-time.github.io/kubezero/
|
||||||
- name: gocd
|
- name: gocd
|
||||||
version: 1.39.4
|
version: 1.39.4
|
||||||
repository: https://gocd.github.io/helm-chart
|
repository: https://gocd.github.io/helm-chart
|
||||||
|
@ -19,6 +19,7 @@ Kubernetes: `>= 1.18.0`
|
|||||||
| Repository | Name | Version |
|
| Repository | Name | Version |
|
||||||
|------------|------|---------|
|
|------------|------|---------|
|
||||||
| https://gocd.github.io/helm-chart | gocd | 1.39.4 |
|
| https://gocd.github.io/helm-chart | gocd | 1.39.4 |
|
||||||
|
| https://zero-down-time.github.io/kubezero/ | kubezero-lib | >= 0.1.4 |
|
||||||
|
|
||||||
# Jenkins
|
# Jenkins
|
||||||
|
|
||||||
@ -31,4 +32,9 @@ Kubernetes: `>= 1.18.0`
|
|||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| gocd.enabled | bool | `false` | |
|
| gocd.enabled | bool | `false` | |
|
||||||
|
| gocd.istio.enabled | bool | `false` | |
|
||||||
|
| gocd.istio.gateway | string | `"istio-ingress/private-ingressgateway"` | |
|
||||||
|
| gocd.istio.url | string | `""` | |
|
||||||
|
| gocd.server.ingress.enabled | bool | `false` | |
|
||||||
|
| gocd.server.service.type | string | `"ClusterIP"` | |
|
||||||
| jenkins.enabled | bool | `false` | |
|
| jenkins.enabled | bool | `false` | |
|
||||||
|
18
charts/kubezero-ci/templates/gocd/istio-service.yaml
Normal file
18
charts/kubezero-ci/templates/gocd/istio-service.yaml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{{- if and .Values.gocd.enabled .Values.gocd.istio.enabled }}
|
||||||
|
apiVersion: networking.istio.io/v1beta1
|
||||||
|
kind: VirtualService
|
||||||
|
metadata:
|
||||||
|
name: {{ include "kubezero-lib.fullname" . }}
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
{{- include "kubezero-lib.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
gateways:
|
||||||
|
- {{ .Values.gocd.istio.gateway }}
|
||||||
|
hosts:
|
||||||
|
- {{ .Values.gocd.istio.url }}
|
||||||
|
http:
|
||||||
|
- route:
|
||||||
|
- destination:
|
||||||
|
host: {{ .Release.Name }}-gocd-server
|
||||||
|
{{- end }}
|
@ -7,5 +7,10 @@ gocd:
|
|||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
istio:
|
||||||
|
enabled: false
|
||||||
|
gateway: istio-ingress/private-ingressgateway
|
||||||
|
url: "" # gocd.example.com
|
||||||
|
|
||||||
jenkins:
|
jenkins:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
Loading…
Reference in New Issue
Block a user