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
ff1e9f4c
Commit
ff1e9f4c
authored
Nov 25, 2014
by
Kelsey Hightower
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2619 from kelseyhightower/update-to-0.5
update links to upstream release
parents
26ec89c3
9d4553a2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
15 deletions
+32
-15
aws-coreos.md
docs/getting-started-guides/aws-coreos.md
+0
-1
master.yaml
docs/getting-started-guides/aws/cloud-configs/master.yaml
+4
-3
node.yaml
docs/getting-started-guides/aws/cloud-configs/node.yaml
+18
-1
cloudformation-template.json
docs/getting-started-guides/aws/cloudformation-template.json
+10
-10
No files found.
docs/getting-started-guides/aws-coreos.md
View file @
ff1e9f4c
__Note (11/21/2014): This mostly works, but doesn't currently register minions correctly.__
__Note (11/21/2014): This mostly works, but doesn't currently register minions correctly.__
See
[
non-cloud formation instructions
](
aws.md
)
for a working install, we're in the process of fixing the cloud formation version. Sorry!
# Getting started on Amazon EC2
# Getting started on Amazon EC2
...
...
docs/getting-started-guides/aws/cloud-configs/master.yaml
View file @
ff1e9f4c
...
@@ -44,7 +44,8 @@ coreos:
...
@@ -44,7 +44,8 @@ coreos:
After=etcd.service
After=etcd.service
[Service]
[Service]
ExecStartPre=/usr/bin/wget -N -P /opt/bin http://storage.googleapis.com/k8s/kube-apiserver
ExecStartPre=-/usr/bin/mkdir -p /opt/bin
ExecStartPre=/usr/bin/wget -N -P /opt/bin https://storage.googleapis.com/kubernetes-release/release/v0.5.4/bin/linux/amd64/kube-apiserver
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-apiserver
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-apiserver
ExecStart=/opt/bin/kube-apiserver \
ExecStart=/opt/bin/kube-apiserver \
--address=0.0.0.0 \
--address=0.0.0.0 \
...
@@ -63,7 +64,7 @@ coreos:
...
@@ -63,7 +64,7 @@ coreos:
After=kube-apiserver.service
After=kube-apiserver.service
[Service]
[Service]
ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/k8s
/kube-controller-manager
ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4/bin/linux/amd64
/kube-controller-manager
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-controller-manager
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-controller-manager
ExecStart=/opt/bin/kube-controller-manager \
ExecStart=/opt/bin/kube-controller-manager \
--master=127.0.0.1:8080 \
--master=127.0.0.1:8080 \
...
@@ -80,7 +81,7 @@ coreos:
...
@@ -80,7 +81,7 @@ coreos:
After=kube-apiserver.service
After=kube-apiserver.service
[Service]
[Service]
ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/k8s
/kube-scheduler
ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4/bin/linux/amd64
/kube-scheduler
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-scheduler
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-scheduler
ExecStart=/opt/bin/kube-scheduler --master=127.0.0.1:8080
ExecStart=/opt/bin/kube-scheduler --master=127.0.0.1:8080
Restart=always
Restart=always
...
...
docs/getting-started-guides/aws/cloud-configs/node.yaml
View file @
ff1e9f4c
...
@@ -55,6 +55,23 @@ coreos:
...
@@ -55,6 +55,23 @@ coreos:
ExecStart=/opt/bin/setup-network-environment
ExecStart=/opt/bin/setup-network-environment
RemainAfterExit=yes
RemainAfterExit=yes
Type=oneshot
Type=oneshot
-
name
:
kube-proxy.service
command
:
start
content
:
|
[Unit]
Description=Kubernetes Proxy
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Requires=setup-network-environment.service
After=setup-network-environment.service
[Service]
ExecStartPre=/usr/bin/wget -N -P /opt/bin https://storage.googleapis.com/kubernetes-release/release/v0.5.4/bin/linux/amd64/kube-proxy
ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-proxy
ExecStart=/opt/bin/kube-proxy \
--etcd_servers=http://<master-private-ip>:4001 \
--logtostderr=true
Restart=always
RestartSec=10
-
name
:
kube-kubelet.service
-
name
:
kube-kubelet.service
command
:
start
command
:
start
content
:
|
content
:
|
...
@@ -66,7 +83,7 @@ coreos:
...
@@ -66,7 +83,7 @@ coreos:
[Service]
[Service]
EnvironmentFile=/etc/network-environment
EnvironmentFile=/etc/network-environment
ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/k8s
/kubelet
ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4/bin/linux/amd64
/kubelet
ExecStartPre=/usr/bin/chmod +x /opt/bin/kubelet
ExecStartPre=/usr/bin/chmod +x /opt/bin/kubelet
ExecStart=/opt/bin/kubelet \
ExecStart=/opt/bin/kubelet \
--address=0.0.0.0 \
--address=0.0.0.0 \
...
...
docs/getting-started-guides/aws/cloudformation-template.json
View file @
ff1e9f4c
...
@@ -142,7 +142,7 @@
...
@@ -142,7 +142,7 @@
" [Service]
\n
"
,
" [Service]
\n
"
,
" Type=notify
\n
"
,
" Type=notify
\n
"
,
" ExecStartPre=-/usr/bin/mkdir -p /opt/bin
\n
"
,
" ExecStartPre=-/usr/bin/mkdir -p /opt/bin
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http://storage.googleapis.com/k8s/flanneld
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s
://storage.googleapis.com/k8s/flanneld
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/flanneld
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/flanneld
\n
"
,
" ExecStartPre=-/usr/bin/etcdctl mk /coreos.com/network/config '{
\"
Network
\"
:
\"
10.0.0.0/16
\"
}'
\n
"
,
" ExecStartPre=-/usr/bin/etcdctl mk /coreos.com/network/config '{
\"
Network
\"
:
\"
10.0.0.0/16
\"
}'
\n
"
,
" ExecStart=/opt/bin/flanneld
\n
"
,
" ExecStart=/opt/bin/flanneld
\n
"
,
...
@@ -155,7 +155,7 @@
...
@@ -155,7 +155,7 @@
" Requires=etcd.service
\n
"
,
" Requires=etcd.service
\n
"
,
" After=etcd.service
\n\n
"
,
" After=etcd.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/kubernetes-release/release/v0.5.2
/bin/linux/amd64/kube-apiserver
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4
/bin/linux/amd64/kube-apiserver
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-apiserver
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-apiserver
\n
"
,
" ExecStart=/opt/bin/kube-apiserver
\\\n
"
,
" ExecStart=/opt/bin/kube-apiserver
\\\n
"
,
" --address=0.0.0.0
\\\n
"
,
" --address=0.0.0.0
\\\n
"
,
...
@@ -174,7 +174,7 @@
...
@@ -174,7 +174,7 @@
" Requires=kube-apiserver.service
\n
"
,
" Requires=kube-apiserver.service
\n
"
,
" After=kube-apiserver.service
\n\n
"
,
" After=kube-apiserver.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/kubernetes-release/release/v0.5.2
/bin/linux/amd64/kube-controller-manager
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4
/bin/linux/amd64/kube-controller-manager
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-controller-manager
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-controller-manager
\n
"
,
" ExecStart=/opt/bin/kube-controller-manager
\\\n
"
,
" ExecStart=/opt/bin/kube-controller-manager
\\\n
"
,
" --master=127.0.0.1:8080
\\\n
"
,
" --master=127.0.0.1:8080
\\\n
"
,
...
@@ -190,7 +190,7 @@
...
@@ -190,7 +190,7 @@
" Requires=kube-apiserver.service
\n
"
,
" Requires=kube-apiserver.service
\n
"
,
" After=kube-apiserver.service
\n\n
"
,
" After=kube-apiserver.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/kubernetes-release/release/v0.5.2
/bin/linux/amd64/kube-scheduler
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4
/bin/linux/amd64/kube-scheduler
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-scheduler
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-scheduler
\n
"
,
" ExecStart=/opt/bin/kube-scheduler --master=127.0.0.1:8080
\n
"
,
" ExecStart=/opt/bin/kube-scheduler --master=127.0.0.1:8080
\n
"
,
" Restart=always
\n
"
,
" Restart=always
\n
"
,
...
@@ -204,7 +204,7 @@
...
@@ -204,7 +204,7 @@
" Requires=etcd.service
\n
"
,
" Requires=etcd.service
\n
"
,
" After=etcd.service
\n\n
"
,
" After=etcd.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/kubernetes-release/release/v0.5.2
/bin/linux/amd64/kube-proxy
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4
/bin/linux/amd64/kube-proxy
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-proxy
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-proxy
\n
"
,
" ExecStart=/opt/bin/kube-proxy
\\\n
"
,
" ExecStart=/opt/bin/kube-proxy
\\\n
"
,
" --etcd_servers=http://127.0.0.1:4001
\\\n
"
,
" --etcd_servers=http://127.0.0.1:4001
\\\n
"
,
...
@@ -220,7 +220,7 @@
...
@@ -220,7 +220,7 @@
" Requires=kube-apiserver.service
\n
"
,
" Requires=kube-apiserver.service
\n
"
,
" After=kube-apiserver.service
\n\n
"
,
" After=kube-apiserver.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http://storage.googleapis.com/k8s/kube-register
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s
://storage.googleapis.com/k8s/kube-register
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-register
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-register
\n
"
,
" ExecStart=/opt/bin/kube-register
\\\n
"
,
" ExecStart=/opt/bin/kube-register
\\\n
"
,
" --metadata=role=knode
\\\n
"
,
" --metadata=role=knode
\\\n
"
,
...
@@ -263,7 +263,7 @@
...
@@ -263,7 +263,7 @@
" [Service]
\n
"
,
" [Service]
\n
"
,
" Type=notify
\n
"
,
" Type=notify
\n
"
,
" ExecStartPre=-/usr/bin/mkdir -p /opt/bin
\n
"
,
" ExecStartPre=-/usr/bin/mkdir -p /opt/bin
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http://storage.googleapis.com/k8s/flanneld
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s
://storage.googleapis.com/k8s/flanneld
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/flanneld
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/flanneld
\n
"
,
" ExecStart=/opt/bin/flanneld -etcd-endpoints http://"
,
{
"Fn::GetAtt"
:[
"KubernetesMasterInstance"
,
"PrivateIp"
]},
":4001
\n
"
,
" ExecStart=/opt/bin/flanneld -etcd-endpoints http://"
,
{
"Fn::GetAtt"
:[
"KubernetesMasterInstance"
,
"PrivateIp"
]},
":4001
\n
"
,
" - name: docker.service
\n
"
,
" - name: docker.service
\n
"
,
...
@@ -290,7 +290,7 @@
...
@@ -290,7 +290,7 @@
" After=network-online.target
\n\n
"
,
" After=network-online.target
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=-/usr/bin/mkdir -p /opt/bin
\n
"
,
" ExecStartPre=-/usr/bin/mkdir -p /opt/bin
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http://storage.googleapis.com/k8s/setup-network-environment
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s
://storage.googleapis.com/k8s/setup-network-environment
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/setup-network-environment
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/setup-network-environment
\n
"
,
" ExecStart=/opt/bin/setup-network-environment
\n
"
,
" ExecStart=/opt/bin/setup-network-environment
\n
"
,
" RemainAfterExit=yes
\n
"
,
" RemainAfterExit=yes
\n
"
,
...
@@ -305,7 +305,7 @@
...
@@ -305,7 +305,7 @@
" After=setup-network-environment.service
\n\n
"
,
" After=setup-network-environment.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" EnvironmentFile=/etc/network-environment
\n
"
,
" EnvironmentFile=/etc/network-environment
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/kubernetes-release/release/v0.5.2
/bin/linux/amd64/kubelet
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4
/bin/linux/amd64/kubelet
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kubelet
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kubelet
\n
"
,
" ExecStart=/opt/bin/kubelet
\\\n
"
,
" ExecStart=/opt/bin/kubelet
\\\n
"
,
" --address=0.0.0.0
\\\n
"
,
" --address=0.0.0.0
\\\n
"
,
...
@@ -324,7 +324,7 @@
...
@@ -324,7 +324,7 @@
" Requires=setup-network-environment.service
\n
"
,
" Requires=setup-network-environment.service
\n
"
,
" After=setup-network-environment.service
\n\n
"
,
" After=setup-network-environment.service
\n\n
"
,
" [Service]
\n
"
,
" [Service]
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
://storage.googleapis.com/kubernetes-release/release/v0.5.2
/bin/linux/amd64/kube-proxy
\n
"
,
" ExecStartPre=/usr/bin/wget -N -P /opt/bin http
s://storage.googleapis.com/kubernetes-release/release/v0.5.4
/bin/linux/amd64/kube-proxy
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-proxy
\n
"
,
" ExecStartPre=/usr/bin/chmod +x /opt/bin/kube-proxy
\n
"
,
" ExecStart=/opt/bin/kube-proxy
\\\n
"
,
" ExecStart=/opt/bin/kube-proxy
\\\n
"
,
" --etcd_servers=http://"
,
{
"Fn::GetAtt"
:[
"KubernetesMasterInstance"
,
"PrivateIp"
]},
":4001
\\\n
"
,
" --etcd_servers=http://"
,
{
"Fn::GetAtt"
:[
"KubernetesMasterInstance"
,
"PrivateIp"
]},
":4001
\\\n
"
,
...
...
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