Merge pull request 'fix: modified nats box to use image tag non root for use in openshift environment' (#204) from fix/nats_non_root into master
All checks were successful
Run Check Script / check (push) Successful in 1m5s
Compile and package harmony_composer / package_harmony_composer (push) Successful in 7m36s

Reviewed-on: #204
This commit is contained in:
2026-01-07 20:52:42 +00:00

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/"),