fix: modified nats box to use image tag non root for use in openshift environment
All checks were successful
Run Check Script / check (pull_request) Successful in 1m12s

This commit is contained in:
2026-01-07 15:48:37 -05:00
parent 05c6398875
commit 15f5e14c70

View File

@@ -28,7 +28,11 @@ async fn main() {
gateway:
enabled: false
# name: my-gateway
# port: 7522"#
# port: 7522
natsBox:
container:
image:
tag: nonroot"#
.to_string(),
);
let namespace = "nats";
@@ -40,7 +44,7 @@ async fn main() {
values_overrides: None,
values_yaml,
create_namespace: true,
install_only: true,
install_only: false,
repository: Some(HelmRepository::new(
"nats".to_string(),
hurl!("https://nats-io.github.io/k8s/helm/charts/"),