From 15f5e14c701da94000d5dcb74f64c589b2833b0f Mon Sep 17 00:00:00 2001 From: wjro Date: Wed, 7 Jan 2026 15:48:37 -0500 Subject: [PATCH] fix: modified nats box to use image tag non root for use in openshift environment --- examples/nats/src/main.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/nats/src/main.rs b/examples/nats/src/main.rs index ca0d7d5..8c391d5 100644 --- a/examples/nats/src/main.rs +++ b/examples/nats/src/main.rs @@ -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/"),