forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes#2461 from MSOpenTech/deploy
Bring Azure deploy scripts up to date
- Loading branch information
Showing
14 changed files
with
733 additions
and
450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Retry a download until we get it. | ||
# | ||
# $1 is the URL to download | ||
download-or-bust() { | ||
local -r url="$1" | ||
local -r file="${url##*/}" | ||
rm -f "$file" | ||
until [[ -e "${file}" ]]; do | ||
curl --ipv4 -Lo "$file" --connect-timeout 20 --retry 6 --retry-delay 10 "$url" | ||
md5sum "$file" | ||
done | ||
} | ||
|
||
# Install salt from GCS. See README.md for instructions on how to update these | ||
# debs. | ||
# | ||
# $1 If set to --master, also install the master | ||
install-salt() { | ||
apt-get update | ||
|
||
mkdir -p /var/cache/salt-install | ||
cd /var/cache/salt-install | ||
|
||
TARS=( | ||
libzmq3_3.2.3+dfsg-1~bpo70~dst+1_amd64.deb | ||
python-zmq_13.1.0-1~bpo70~dst+1_amd64.deb | ||
salt-common_2014.1.13+ds-1~bpo70+1_all.deb | ||
salt-minion_2014.1.13+ds-1~bpo70+1_all.deb | ||
) | ||
if [[ ${1-} == '--master' ]]; then | ||
TARS+=(salt-master_2014.1.13+ds-1~bpo70+1_all.deb) | ||
fi | ||
URL_BASE="https://storage.googleapis.com/kubernetes-release/salt" | ||
|
||
for tar in "${TARS[@]}"; do | ||
download-or-bust "${URL_BASE}/${tar}" | ||
dpkg -i "${tar}" | ||
done | ||
|
||
# This will install any of the unmet dependencies from above. | ||
apt-get install -f -y | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2014 Google Inc. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Create the overlay files for the salt tree. We create these in a separate | ||
# place so that we can blow away the rest of the salt configs on a kube-push and | ||
# re-apply these. | ||
|
||
mkdir -p /srv/salt-overlay/pillar | ||
cat <<EOF >/srv/salt-overlay/pillar/cluster-params.sls | ||
node_instance_prefix: $NODE_INSTANCE_PREFIX | ||
portal_net: $PORTAL_NET | ||
EOF | ||
|
||
mkdir -p /srv/salt-overlay/salt/nginx | ||
echo $MASTER_HTPASSWD > /srv/salt-overlay/salt/nginx/htpasswd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.