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

Update versions for airgap install of gloo-mesh #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Update versions for airgap install of gloo-mesh
  • Loading branch information
willowmck committed Sep 13, 2021
commit 53ea8f3db093f775ab082c7d5f3e24dabca334fc
10 changes: 5 additions & 5 deletions gloo-mesh-airgap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,9 @@ Pull and push locally the Docker images needed:
#sudo chmod +x /usr/local/bin/yq

cat <<EOF > images.txt
docker.io/istio/operator:1.10.4
gcr.io/istio-enterprise/pilot:1.10.4
gcr.io/istio-enterprise/proxyv2:1.10.4
gcr.io/istio-enterprise/operator:1.11.1-solo
gcr.io/istio-enterprise/pilot:1.11.1-solo
gcr.io/istio-enterprise/proxyv2:1.11.1-solo
docker.io/istio/examples-bookinfo-productpage-v1:1.16.2
docker.io/istio/examples-bookinfo-reviews-v1:1.16.2
docker.io/istio/examples-bookinfo-reviews-v2:1.16.2
Expand All @@ -344,13 +344,13 @@ docker.io/istio/examples-bookinfo-details-v1:1.16.2
docker.io/istio/examples-bookinfo-ratings-v1:1.16.2
EOF

wget https://storage.googleapis.com/gloo-mesh-enterprise/enterprise-agent/enterprise-agent-1.1.1.tgz
wget https://storage.googleapis.com/gloo-mesh-enterprise/enterprise-agent/enterprise-agent-1.1.3.tgz
tar zxvf enterprise-agent-1.1.1.tgz
find enterprise-agent -name "values.yaml" | while read file; do
cat $file | yq eval -j | jq -r '.. | .image? | select(. != null) | (if .registry then (if .registry == "docker.io" then "docker.io/library" else .registry end) + "/" else "" end) + .repository + ":" + (.tag | tostring)'
done | sort -u >> images.txt

wget https://storage.googleapis.com/gloo-mesh-enterprise/gloo-mesh-enterprise/gloo-mesh-enterprise-1.1.1.tgz
wget https://storage.googleapis.com/gloo-mesh-enterprise/gloo-mesh-enterprise/gloo-mesh-enterprise-1.1.3.tgz
tar zxvf gloo-mesh-enterprise-1.1.1.tgz
find gloo-mesh-enterprise -name "values.yaml" | while read file; do
cat $file | yq eval -j | jq -r '.. | .image? | select(. != null) | (if .registry then (if .registry == "docker.io" then "docker.io/library" else .registry end) + "/" else "" end) + .repository + ":" + (.tag | tostring)'
Expand Down