Merge pull request #90 from wojiushixiaobai/main

fix: bad character
This commit is contained in:
吴小白 2022-07-25 17:28:43 +08:00 committed by GitHub
commit e3aa5fe98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 12 deletions

View File

@ -63,11 +63,11 @@ spec:
- name: postgre - name: postgre
containerPort: {{ .service.postgre.port }} containerPort: {{ .service.postgre.port }}
protocol: TCP protocol: TCP
- name: oracle-11g - name: oracle11g
containerPort: {{ .service.oracle-11g.port }} containerPort: {{ .service.oracle11g.port }}
protocol: TCP protocol: TCP
- name: oracle-12c - name: oracle12c
containerPort: {{ .service.oracle-12c.port }} containerPort: {{ .service.oracle12c.port }}
protocol: TCP protocol: TCP
{{- end }} {{- end }}
livenessProbe: livenessProbe:

View File

@ -26,14 +26,14 @@ spec:
targetPort: postgre targetPort: postgre
protocol: TCP protocol: TCP
name: postgre name: postgre
- port: {{ .service.oracle-11g.port }} - port: {{ .service.oracle11g.port }}
targetPort: oracle-11g targetPort: oracle11g
protocol: TCP protocol: TCP
name: oracle-11g name: oracle11g
- port: {{ .service.oracle-12c.port }} - port: {{ .service.oracle12c.port }}
targetPort: oracle-12c targetPort: oracle12c
protocol: TCP protocol: TCP
name: oracle-12c name: oracle12c
{{- end }} {{- end }}
sessionAffinity: ClientIP sessionAffinity: ClientIP
sessionAffinityConfig: sessionAffinityConfig:

View File

@ -392,9 +392,9 @@ magnus:
port: 33061 port: 33061
postgre: postgre:
port: 54320 port: 54320
oracle-11g: oracle11g:
port: 15211 port: 15211
oracle-12c: oracle12c:
port: 15212 port: 15212
resources: {} resources: {}