diff --git a/stable/enterprise/Chart.yaml b/stable/enterprise/Chart.yaml index 54004609..d0f000fd 100644 --- a/stable/enterprise/Chart.yaml +++ b/stable/enterprise/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: enterprise -version: "2.3.3" +version: "2.3.4" appVersion: "5.2.0" kubeVersion: 1.23.x - 1.28.x || 1.23.x-x - 1.28.x-x description: | diff --git a/stable/enterprise/README.md b/stable/enterprise/README.md index 88c10b7b..1d38feaf 100644 --- a/stable/enterprise/README.md +++ b/stable/enterprise/README.md @@ -82,7 +82,7 @@ This guide covers deploying Anchore Enterprise on a Kubernetes cluster with the export NAMESPACE=anchore export RELEASE=my-release export ANCHORECTL_URL=http://localhost:8228/v1/ - export ANCHORECTL_PASSWORD=$(kubectl get secret "${RELEASE}-enterprise" -o jsonpath='{.data.ANCHORE_ADMIN_PASSWORD}' | base64 -d -) + export ANCHORECTL_PASSWORD=$(kubectl get secret -n ${NAMESPACE} "${RELEASE}-enterprise" -o jsonpath='{.data.ANCHORE_ADMIN_PASSWORD}' | base64 -d -) kubectl port-forward -n ${NAMESPACE} svc/${RELEASE}-enterprise-api 8228:8228 # port forward for anchorectl in another terminal anchorectl system status # anchorectl defaults to the user admin, and to the password ${ANCHORECTL_PASSWORD} automatically if set