Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
49da8298
Commit
49da8298
authored
Jul 22, 2016
by
Justin Santa Barbara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AWS kube-up: fix MASTER_OS_DISTRIBUTION
On AWS we were defining KUBE_MASTER_OS_DISTRIBUTION, but the scripts expect MASTER_OS_DISTRIBUTION. Fixes #29422
parent
480e8a30
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
config-default.sh
cluster/aws/config-default.sh
+2
-2
config-test.sh
cluster/aws/config-test.sh
+2
-2
No files found.
cluster/aws/config-default.sh
View file @
49da8298
...
@@ -143,8 +143,8 @@ ENABLE_NODE_PUBLIC_IP=${KUBE_ENABLE_NODE_PUBLIC_IP:-true}
...
@@ -143,8 +143,8 @@ ENABLE_NODE_PUBLIC_IP=${KUBE_ENABLE_NODE_PUBLIC_IP:-true}
# OS options for minions
# OS options for minions
KUBE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
:-
jessie
}
"
KUBE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
:-
jessie
}
"
KUBE_
MASTER_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
MASTER_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
KUBE_
NODE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
NODE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
KUBE_NODE_IMAGE
=
"
${
KUBE_NODE_IMAGE
:-}
"
KUBE_NODE_IMAGE
=
"
${
KUBE_NODE_IMAGE
:-}
"
COREOS_CHANNEL
=
"
${
COREOS_CHANNEL
:-
alpha
}
"
COREOS_CHANNEL
=
"
${
COREOS_CHANNEL
:-
alpha
}
"
CONTAINER_RUNTIME
=
"
${
KUBE_CONTAINER_RUNTIME
:-
docker
}
"
CONTAINER_RUNTIME
=
"
${
KUBE_CONTAINER_RUNTIME
:-
docker
}
"
...
...
cluster/aws/config-test.sh
View file @
49da8298
...
@@ -129,8 +129,8 @@ ENABLE_NODE_PUBLIC_IP=${KUBE_ENABLE_NODE_PUBLIC_IP:-true}
...
@@ -129,8 +129,8 @@ ENABLE_NODE_PUBLIC_IP=${KUBE_ENABLE_NODE_PUBLIC_IP:-true}
# OS options for minions
# OS options for minions
KUBE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
:-
jessie
}
"
KUBE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
:-
jessie
}
"
KUBE_
MASTER_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
MASTER_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
KUBE_
NODE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
NODE_OS_DISTRIBUTION
=
"
${
KUBE_OS_DISTRIBUTION
}
"
KUBE_NODE_IMAGE
=
"
${
KUBE_NODE_IMAGE
:-}
"
KUBE_NODE_IMAGE
=
"
${
KUBE_NODE_IMAGE
:-}
"
COREOS_CHANNEL
=
"
${
COREOS_CHANNEL
:-
alpha
}
"
COREOS_CHANNEL
=
"
${
COREOS_CHANNEL
:-
alpha
}
"
CONTAINER_RUNTIME
=
"
${
KUBE_CONTAINER_RUNTIME
:-
docker
}
"
CONTAINER_RUNTIME
=
"
${
KUBE_CONTAINER_RUNTIME
:-
docker
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment