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

Promote version to 5.4.2 #466

Merged
merged 3 commits into from
Jan 17, 2025
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
4 changes: 2 additions & 2 deletions charts/core/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: core
apiVersion: v1
version: 2.8.3
appVersion: 5.4.1
version: 2.8.4
appVersion: 5.4.2
description: Helm chart for NeuVector's core services
home: https://neuvector.com
icon: https://avatars2.githubusercontent.com/u/19367275?s=200&v=4
Expand Down
16 changes: 8 additions & 8 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
openshift: false

registry: docker.io
tag: 5.4.1
tag: 5.4.2
oem:
imagePullSecrets:
psp: false
Expand Down Expand Up @@ -69,7 +69,7 @@ internal:
enabled: false
secretname: neuvector-internal
autoGenerateCert: true
autoRotateCert: false
autoRotateCert: true

controller:
# If false, controller will not be installed
Expand Down Expand Up @@ -317,7 +317,7 @@ controller:
enabled: false
image:
repository: neuvector/compliance-config
tag: latest
tag: 1.0.2
hash:
enforcer:
# If false, enforcer will not be installed
Expand Down Expand Up @@ -366,7 +366,7 @@ manager:
# - name: CUSTOM_PAGE_FOOTER_COLOR
# value: "#FFFFFF"
svc:
type: NodePort # should be set to - ClusterIP
type: ClusterIP
nodePort:
loadBalancerIP:
annotations:
Expand Down Expand Up @@ -446,7 +446,7 @@ cve:
enabled: false
image:
repository: neuvector/registry-adapter
tag: 0.1.3
tag: 0.1.5
hash:
priorityClassName:
resources:
Expand Down Expand Up @@ -484,7 +484,7 @@ cve:
protocol: https
secretName:
svc:
type: NodePort # should be set to - ClusterIP
type: ClusterIP
loadBalancerIP:
annotations:
{}
Expand Down Expand Up @@ -537,7 +537,7 @@ cve:
image:
registry: ""
repository: neuvector/updater
tag: latest
tag: 0.0.1
hash:
schedule: "0 0 * * *"
priorityClassName:
Expand Down Expand Up @@ -568,7 +568,7 @@ cve:
image:
registry: ""
repository: neuvector/scanner
tag: latest
tag: "6"
hash:
priorityClassName:
resources:
Expand Down
4 changes: 2 additions & 2 deletions charts/crd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: crd
apiVersion: v1
version: 2.8.3
appVersion: 5.4.1
version: 2.8.4
appVersion: 5.4.2
description: Helm chart for NeuVector's CRD services
home: https://neuvector.com
icon: https://avatars2.githubusercontent.com/u/19367275?s=200&v=4
Expand Down
4 changes: 2 additions & 2 deletions charts/monitor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: monitor
apiVersion: v1
version: 2.8.3
appVersion: 1-1.0.0
version: 2.8.4
appVersion: 1.0.1
description: Helm chart for NeuVector monitor services
home: https://neuvector.com
icon: https://avatars2.githubusercontent.com/u/19367275?s=200&v=4
Expand Down
2 changes: 1 addition & 1 deletion charts/monitor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exporter:
enabled: true
image:
repository: neuvector/prometheus-exporter
tag: latest
tag: 1.0.2
# changes this to a readonly user !
CTRL_USERNAME: admin
CTRL_PASSWORD: admin
Expand Down
4 changes: 2 additions & 2 deletions test/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ func TestManagerService(t *testing.T) {
var svc corev1.Service
helm.UnmarshalK8SYaml(t, outs[0], &svc)

checkManagerService(t, svc, "NodePort")
checkManagerService(t, svc, "ClusterIP")
}

func TestManagerServiceLB(t *testing.T) {
Expand Down Expand Up @@ -384,4 +384,4 @@ func TestFedManagedServiceLBIP(t *testing.T) {
}

checkControllerServiceFedManaged(t, svc, svcType)
}
}
Loading