Skip to content

Commit e7c770d

Browse files
committed
feat: Add HTTPS port configuration for Trust Agent in daemonset and values.yaml
1 parent df5066c commit e7c770d

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

helm/attestation-verifier/charts/trustagent/templates/daemonset-suefi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,10 @@ metadata:
154154
initialDelaySeconds: 5
155155
failureThreshold: 60
156156
periodSeconds: 15
157+
ports:
158+
- name: https
159+
containerPort: 1443
160+
protocol: TCP
157161
volumeMounts:
158162
{{- include "factory.volumeMountSvcLogs" . | nindent 12 }}
159163
- name: {{ include "factory.name" . }}-config
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{{- include "factory.headers" . }}
2+
---
3+
{{ include "factory.serviceCommonSpec" . }}
4+
type: ClusterIP
5+
ports:
6+
- port: 1443
7+
targetPort: 1443
8+
protocol: TCP
9+
name: https

helm/attestation-verifier/charts/trustagent/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,5 @@ service:
102102
containerPort: 8443 # The containerPort on which HVS can listen
103103
port: 30443
104104
ta:
105-
containerPort: # The containerPort on which TA can listen
105+
containerPort: 1443 # The containerPort on which TA can listen
106106
port: # The externally exposed NodePort on which TA can listen to external traffic

0 commit comments

Comments
 (0)