-
Notifications
You must be signed in to change notification settings - Fork 1.3k
createkubertetesbinariesiso: Saving images in network and dashboard yaml #4459
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #!/bin/bash | ||
| #!/bin/bash -x | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
|
|
@@ -16,9 +16,11 @@ | |
| # specific language governing permissions and limitations | ||
| # under the License. | ||
|
|
||
| set -e | ||
|
|
||
| if [ $# -lt 6 ]; then | ||
| echo "Invalid input. Valid usage: ./create-kubernetes-binaries-iso.sh OUTPUT_PATH KUBERNETES_VERSION CNI_VERSION CRICTL_VERSION WEAVENET_NETWORK_YAML_CONFIG DASHBOARD_YAML_CONFIG" | ||
| echo "eg: ./create-kubernetes-binaries-iso.sh ./ 1.11.4 0.7.1 1.11.1 https://github.com/weaveworks/weave/releases/download/latest_release/weave-daemonset-k8s-1.11.yaml https://raw.githubusercontent.com/kubernetes/dashboard/v1.10.0/src/deploy/recommended/kubernetes-dashboard.yaml" | ||
| echo "Invalid input. Valid usage: ./create-kubernetes-binaries-iso.sh OUTPUT_PATH KUBERNETES_VERSION CNI_VERSION CRICTL_VERSION WEAVENET_NETWORK_YAML_CONFIG DASHBOARD_YAML_CONFIG BUILD_NAME" | ||
| echo "eg: ./create-kubernetes-binaries-iso.sh ./ 1.11.4 0.7.1 1.11.1 https://github.com/weaveworks/weave/releases/download/latest_release/weave-daemonset-k8s-1.11.yaml https://raw.githubusercontent.com/kubernetes/dashboard/v1.10.0/src/deploy/recommended/kubernetes-dashboard.yaml setup-v1.11.4" | ||
| exit 1 | ||
| fi | ||
|
|
||
|
|
@@ -28,6 +30,8 @@ start_dir="$PWD" | |
| iso_dir="/tmp/iso" | ||
| working_dir="${iso_dir}/" | ||
| mkdir -p "${working_dir}" | ||
| build_name="${7}.iso" | ||
| [ -z "${build_name}" ] && build_name="setup-${RELEASE}.iso" | ||
|
|
||
| CNI_VERSION="v${3}" | ||
| echo "Downloading CNI ${CNI_VERSION}..." | ||
|
|
@@ -50,7 +54,7 @@ kubeadm_file_permissions=`stat --format '%a' kubeadm` | |
| chmod +x kubeadm | ||
|
|
||
| echo "Downloading kubelet.service ${RELEASE}..." | ||
| cd $start_dir | ||
| cd "${start_dir}" | ||
| kubelet_service_file="${working_dir}/kubelet.service" | ||
| touch "${kubelet_service_file}" | ||
| curl -sSL "https://raw.githubusercontent.com/kubernetes/kubernetes/${RELEASE}/build/debs/kubelet.service" | sed "s:/usr/bin:/opt/bin:g" > ${kubelet_service_file} | ||
|
|
@@ -87,6 +91,14 @@ if [ $? -ne 0 ]; then | |
| fi | ||
| mkdir -p "${working_dir}/docker" | ||
| output=`${k8s_dir}/kubeadm config images list --kubernetes-version=${RELEASE}` | ||
|
|
||
| # Don't forget about the yaml images ! | ||
| for i in ${network_conf_file} ${dashboard_conf_file} | ||
| do | ||
| images=`grep "image:" $i | cut -d ':' -f2- | tr -d ' ' | tr -d "'"` | ||
| output=`printf "%s\n" ${output} ${images}` | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a simpler way of doing
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, never encountered that before, tnx |
||
| done | ||
|
|
||
| while read -r line; do | ||
| echo "Downloading docker image $line ---" | ||
| sudo docker pull "$line" | ||
|
|
@@ -96,11 +108,11 @@ while read -r line; do | |
| done <<< "$output" | ||
|
|
||
| echo "Restore kubeadm permissions..." | ||
| if [ "${kubeadm_file_permissions}" -eq "" ]; then | ||
| if [ -z "${kubeadm_file_permissions}" ]; then | ||
| kubeadm_file_permissions=644 | ||
| fi | ||
| chmod ${kubeadm_file_permissions} "${working_dir}/k8s/kubeadm" | ||
|
|
||
| mkisofs -o "${output_dir}/setup-${RELEASE}.iso" -J -R -l "${iso_dir}" | ||
| mkisofs -o "${output_dir}/${build_name}" -J -R -l "${iso_dir}" | ||
|
|
||
| rm -rf "${iso_dir}" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🇹🇷 red flag ;) but fine by me. we allow this script to exit and leave garbage behind. in view of the function of this script fine. (a comment or so would be appropriate, i think)