You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/blog/2025-07-24-introducing-patternizer.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Navigate to your repository's root and run the Patternizer container, mounting y
44
44
+
45
45
[source,bash]
46
46
----
47
-
podman run -v "$PWD:/repo:z" quay.io/hybridcloudpatterns/patternizer init
47
+
podman run --pull=newer -v "$PWD:$PWD:z" -w "$PWD" quay.io/validatedpatterns/patternizer init
48
48
----
49
49
+
50
50
This single command scans your repository for Helm charts and generates all the necessary files to turn it into a Validated Pattern.
@@ -88,7 +88,7 @@ Run the `init` command with the `--with-secrets` flag:
88
88
89
89
[source,bash]
90
90
----
91
-
podman run -v "$PWD:/repo:z" quay.io/hybridcloudpatterns/patternizer init --with-secrets
91
+
podman run --pull=newer -v "$PWD:$PWD:z" -w "$PWD" quay.io/validatedpatterns/patternizer init --with-secrets
92
92
----
93
93
94
94
This command updates your configuration to integrate with External Secrets Operator (ESO) and Vault. It generates a `values-secret.yaml.template` for defining your secrets and automatically adds the required operator subscriptions to your pattern.
0 commit comments