From 2ced645b00b15ae45e62cf0ca7739f351e168969 Mon Sep 17 00:00:00 2001 From: Austin Abro Date: Thu, 5 Dec 2024 17:53:36 +0000 Subject: [PATCH] console no color Signed-off-by: Austin Abro --- Dockerfile | 2 +- examples/helm-charts/zarf.yaml | 32 +------------------------------- 2 files changed, 2 insertions(+), 32 deletions(-) diff --git a/Dockerfile b/Dockerfile index 69c114b941..94ccff0032 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,4 +6,4 @@ USER 65532:65532 COPY --chown=65532:65532 --chmod=0700 "build/zarf-linux-$TARGETARCH" /zarf -CMD ["/zarf", "internal", "agent", "--log-level=debug", "--log-format=text", "--no-log-file"] +CMD ["/zarf", "internal", "agent", "--log-level=debug", "--log-format=console-no-color", "--no-log-file"] diff --git a/examples/helm-charts/zarf.yaml b/examples/helm-charts/zarf.yaml index dbb2648204..50c3b50b61 100644 --- a/examples/helm-charts/zarf.yaml +++ b/examples/helm-charts/zarf.yaml @@ -10,7 +10,7 @@ components: charts: # Charts are organized in a list with unique chart names per component - note that a Zarf chart name does not need to match the chart name in a Chart.yaml - name: podinfo-local - version: 6.4.0 + version: 6.4.100 namespace: podinfo-from-local-chart # In this case `localPath` will load the podinfo chart that is located in the `chart` directory localPath: chart @@ -22,36 +22,6 @@ components: - name: REPLICA_COUNT description: "Override the number of pod replicas" path: replicaCount - - - name: podinfo-oci - version: 6.4.0 - namespace: podinfo-from-oci - # In this case `url` will load the helm chart located in the podinfo OCI repository - url: oci://ghcr.io/stefanprodan/charts/podinfo - valuesFiles: - - values.yaml - - - name: podinfo-git - version: 6.4.0 - namespace: podinfo-from-git - # In this case `url` will load the helm chart located in the podinfo git repository - url: https://github.com/stefanprodan/podinfo.git - # By default git will look in the root of the git repository but you can define a sub directory with `gitPath` - gitPath: charts/podinfo - valuesFiles: - - values.yaml - - - name: podinfo-repo - version: 6.4.0 - namespace: podinfo-from-repo - # In this case `url` will load the helm chart located in the podinfo helm repository - url: https://stefanprodan.github.io/podinfo - # By default the chart `name` will be what is used to search a repository but since Zarf chart names must be unique per-component you can override this with `repoName` - repoName: podinfo - # By default the release name will be the chart name, but you can override this with the `releaseName` key - releaseName: cool-release-name - valuesFiles: - - values.yaml images: - ghcr.io/stefanprodan/podinfo:6.4.0 # This is the cosign signature for the podinfo image for image signature verification