Switch to lower ports (#1514)

Co-authored-by: Alon Girmonsky <1990761+alongir@users.noreply.github.com>
This commit is contained in:
Volodymyr Stoiko 2024-03-09 07:02:05 +02:00 committed by GitHub
parent 0aca81fbcb
commit c0751ad4cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 6 deletions

View File

@ -29,6 +29,8 @@ spec:
- name: kubeshark-hub - name: kubeshark-hub
command: command:
- ./hub - ./hub
- -port
- "8080"
{{- if .Values.tap.debug }} {{- if .Values.tap.debug }}
- -debug - -debug
{{- end }} {{- end }}
@ -51,14 +53,14 @@ spec:
successThreshold: 1 successThreshold: 1
initialDelaySeconds: 3 initialDelaySeconds: 3
tcpSocket: tcpSocket:
port: 80 port: 8080
livenessProbe: livenessProbe:
periodSeconds: 1 periodSeconds: 1
failureThreshold: 3 failureThreshold: 3
successThreshold: 1 successThreshold: 1
initialDelaySeconds: 3 initialDelaySeconds: 3
tcpSocket: tcpSocket:
port: 80 port: 8080
resources: resources:
limits: limits:
cpu: {{ .Values.tap.resources.hub.limits.cpu }} cpu: {{ .Values.tap.resources.hub.limits.cpu }}

View File

@ -15,7 +15,7 @@ spec:
ports: ports:
- name: kubeshark-hub - name: kubeshark-hub
port: 80 port: 80
targetPort: 80 targetPort: 8080
selector: selector:
app.kubeshark.co/app: hub app.kubeshark.co/app: hub
type: ClusterIP type: ClusterIP

View File

@ -49,14 +49,14 @@ spec:
successThreshold: 1 successThreshold: 1
initialDelaySeconds: 3 initialDelaySeconds: 3
tcpSocket: tcpSocket:
port: 80 port: 8080
readinessProbe: readinessProbe:
periodSeconds: 1 periodSeconds: 1
failureThreshold: 3 failureThreshold: 3
successThreshold: 1 successThreshold: 1
initialDelaySeconds: 3 initialDelaySeconds: 3
tcpSocket: tcpSocket:
port: 80 port: 8080
timeoutSeconds: 1 timeoutSeconds: 1
resources: resources:
limits: limits:

View File

@ -14,7 +14,7 @@ spec:
ports: ports:
- name: kubeshark-front - name: kubeshark-front
port: 80 port: 80
targetPort: 80 targetPort: 8080
selector: selector:
app.kubeshark.co/app: front app.kubeshark.co/app: front
type: ClusterIP type: ClusterIP