Skip to content

Commit 8639b94

Browse files
Add appProtocol to argocd-server service
1 parent 969452c commit 8639b94

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

csdp/components/argo-cd/kustomization.yaml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,23 @@ configMapGenerator:
2424

2525
# reset the crbs to `subject.namespace: default`, so that argo-cd will later change them to the actual ns
2626
patches:
27-
- patch: |-
27+
28+
- target:
29+
group: rbac.authorization.k8s.io
30+
kind: ClusterRoleBinding
31+
version: v1
32+
patch: |-
2833
- op: replace
2934
path: /subjects/0/namespace
3035
value: default
31-
target:
32-
group: rbac.authorization.k8s.io
33-
kind: ClusterRoleBinding
36+
- target:
3437
version: v1
38+
kind: Service
39+
name: argocd-server
40+
patch: |
41+
- op: add
42+
path: /spec/ports/0/appProtocol
43+
value: grpc
44+
- op: add
45+
path: /spec/ports/1/appProtocol
46+
value: grpc

csdp/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ configMapGenerator:
1010
- name: csdp-runtime-version
1111
behavior: create
1212
literals:
13-
- version=v0.0.310
13+
- version=v0.0.311
1414

1515
replacements:
1616
- source:

runtime.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: "{{ namespace }}"
66
spec:
77
defVersion: 1.0.1
8-
version: 0.0.310
8+
version: 0.0.311
99
bootstrapSpecifier: github.com/codefresh-io/cli-v2/manifests/argo-cd
1010
components:
1111
- name: argo-events

0 commit comments

Comments
 (0)