Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for service discovery v2 #337

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
- -method=get
- -scheme=https
- -host={{ .Values.server }}
- -path=api/v1/servicediscovery
- -path=api/v2/servicediscovery
- -path-output=/data/services.json
volumeMounts:
- name: shared-data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ matches the snapshot:
name: cloud-secret
- name: OTEL_COLLECTOR_SVC
value: otel-collector:4317
image: quay.io/kubescape/gateway:v0.1.17
image: quay.io/kubescape/gateway:v0.1.20
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -595,7 +595,7 @@ matches the snapshot:
value: "false"
- name: WAIT_BEFORE_REPORT
value: "0"
image: quay.io/kubescape/kollector:v0.1.29
image: quay.io/kubescape/kollector:v0.1.33
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -994,7 +994,7 @@ matches the snapshot:
name: cloud-secret
- name: OTEL_COLLECTOR_SVC
value: otel-collector:4317
image: quay.io/kubescape/kubescape:v3.0.1
image: quay.io/kubescape/kubescape:v3.0.2-prerelease
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -1449,7 +1449,7 @@ matches the snapshot:
name: cloud-secret
- name: OTEL_COLLECTOR_SVC
value: otel-collector:4317
image: quay.io/kubescape/kubevuln:v0.2.129
image: quay.io/kubescape/kubevuln:v0.2.133
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -1983,7 +1983,7 @@ matches the snapshot:
value: zap
- name: OTEL_COLLECTOR_SVC
value: otel-collector:4317
image: quay.io/kubescape/operator:v0.1.61
image: quay.io/kubescape/operator:v0.1.64
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -2431,7 +2431,7 @@ matches the snapshot:
- -method=get
- -scheme=https
- -host=api.armosec.io
- -path=api/v1/servicediscovery
- -path=api/v2/servicediscovery
- -path-output=/data/services.json
env: null
image: quay.io/kubescape/http-request:v0.2.2
Expand Down Expand Up @@ -2611,7 +2611,7 @@ matches the snapshot:
name: cloud-secret
- name: OTEL_COLLECTOR_SVC
value: otel-collector:4317
image: quay.io/kubescape/storage:v0.0.33
image: quay.io/kubescape/storage:v0.0.39
imagePullPolicy: IfNotPresent
name: apiserver
resources:
Expand Down
12 changes: 6 additions & 6 deletions charts/kubescape-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ kubescape:
image:
# -- source code: https://github.com/kubescape/kubescape/tree/master/httphandler (public repo)
repository: quay.io/kubescape/kubescape
tag: v3.0.1
tag: v3.0.2-prerelease
pullPolicy: IfNotPresent

resources:
Expand Down Expand Up @@ -245,7 +245,7 @@ operator:
image:
# -- source code: https://github.com/kubescape/operator
repository: quay.io/kubescape/operator
tag: v0.1.61
tag: v0.1.64
pullPolicy: IfNotPresent

service:
Expand Down Expand Up @@ -325,7 +325,7 @@ kubevuln:
image:
# -- source code: https://github.com/kubescape/kubevuln
repository: quay.io/kubescape/kubevuln
tag: v0.2.129
tag: v0.2.133
pullPolicy: IfNotPresent

replicaCount: 1
Expand Down Expand Up @@ -373,7 +373,7 @@ kollector:
image:
# -- source code: https://github.com/kubescape/kollector
repository: quay.io/kubescape/kollector
tag: v0.1.29
tag: v0.1.33
pullPolicy: IfNotPresent

replicaCount: 1
Expand Down Expand Up @@ -424,7 +424,7 @@ gateway:
image:
# -- source code: https://github.com/kubescape/gateway
repository: quay.io/kubescape/gateway
tag: v0.1.17
tag: v0.1.20
pullPolicy: IfNotPresent

replicaCount: 1
Expand Down Expand Up @@ -563,7 +563,7 @@ storage:
replicaCount: 1
image:
repository: quay.io/kubescape/storage
tag: v0.0.33
tag: v0.0.39
pullPolicy: IfNotPresent

# image for init container
Expand Down