Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wpb 3114 #644

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions nix/scripts/list-helm-containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ function optionally_complain() {
}

# For each helm chart passed in from stdin, use the example values to
# render the charts, and assemble the list of images this would fetch.
# render the charts, and assemble the list of images this would fetch..
while IFS= read -r chart; do
echo "Running helm template on chart ${chart}…" >&2

helm template "$chart" \
--set secrets.zrestSecret=emptyString \
--set federate.dtls.tls.key=emptyString \
--set federate.dtls.tls.crt=emptyString \
#--set secrets.zrestSecret=emptyString \
#--set federate.dtls.tls.key=emptyString \
#--set federate.dtls.tls.crt=emptyString \
$( [[ -f ./values/$(basename $chart)/prod-values.example.yaml ]] && echo "-f ./values/$(basename $chart)/prod-values.example.yaml" ) \
$( [[ -f ./values/$(basename $chart)/prod-secrets.example.yaml ]] && echo "-f ./values/$(basename $chart)/prod-secrets.example.yaml" ) \
| yq -r '..|.image? | select(.)' | optionally_complain | sort -u
Expand Down
4 changes: 2 additions & 2 deletions offline/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ charts=(
HELM_HOME=$(mktemp -d)
export HELM_HOME

helm repo add wire https://s3-eu-west-1.amazonaws.com/public.wire.com/charts
helm repo add wire https://s3-eu-west-1.amazonaws.com/public.wire.com/charts-develop
helm repo update

# wire_version=$(helm show chart wire/wire-server | yq -r .version)
wire_version="4.35.0"
wire_version="0.0.2-pr.4696"

# Download zauth; as it's needed to generate certificates
echo "quay.io/wire/zauth:$wire_version" | create-container-dump containers-adminhost
Expand Down