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
d6ee4f68
Commit
d6ee4f68
authored
Jul 02, 2014
by
Brendan Burns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the docker build pipeline.
Add a master manifest.
parent
da61f90b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
54 additions
and
5 deletions
+54
-5
master-manifest.yaml
build/master-manifest.yaml
+49
-0
Dockerfile
build/run-images/apiserver/Dockerfile
+1
-1
run.sh
build/run-images/apiserver/run.sh
+1
-1
Dockerfile
build/run-images/base/Dockerfile
+1
-1
Dockerfile
build/run-images/controller-manager/Dockerfile
+1
-1
Dockerfile
build/run-images/proxy/Dockerfile
+1
-1
No files found.
build/master-manifest.yaml
0 → 100644
View file @
d6ee4f68
version
:
v1beta1
# For now the apiserver, controller, etcd and registry are all in one pod
# when we move to v1beta2 for the manifest API, we should move them to separate
# pods
id
:
master-pod
containers
:
-
name
:
registry
image
:
google/docker-registry
ports
:
-
name
:
registry
hostPort
:
5000
containerPort
:
5000
env
:
-
key
:
GCS_BUCKET
value
:
kubernetes-releases-f8e0c
-
key
:
STORAGE_PATH
value
:
docker-reg/
-
name
:
etcd
image
:
coreos/etcd
ports
:
-
name
:
etcd
hostPort
:
4001
containerPort
:
4001
volumeMounts
:
-
name
:
etcddata
path
:
/mnt/etcd
command
:
[
"
/opt/etcd/bin/etcd"
,
"
-data-dir"
,
"
/mnt/etcd"
]
-
name
:
master
image
:
localhost:5000/kubernetes-apiserver
ports
:
-
name
:
server
hostPort
:
8080
containerPort
:
8080
env
:
-
key
:
KUBE_MINIONS
value
:
cloudvm
-
key
:
ETCD_SERVERS
value
:
http://127.0.0.1:4001
-
name
:
controller-manager
image
:
localhost:5000/kubernetes-controller-manager
env
:
-
key
:
ETCD_SERVERS
value
:
http://127.0.0.1:4001
-
key
:
API_SERVER
value
:
127.0.0.1:8090
volumes
:
-
name
:
etcddata
build/run-images/apiserver/Dockerfile
View file @
d6ee4f68
...
@@ -22,4 +22,4 @@ ENV KUBE_MINIONS ""
...
@@ -22,4 +22,4 @@ ENV KUBE_MINIONS ""
ADD
. /kubernetes
ADD
. /kubernetes
CMD
[
'./run.sh'
]
CMD
[
"/kubernetes/run.sh"
]
build/run-images/apiserver/run.sh
View file @
d6ee4f68
...
@@ -18,4 +18,4 @@
...
@@ -18,4 +18,4 @@
# configuration and that we have a local minion.
# configuration and that we have a local minion.
KUBE_MINIONS
=
${
KUBE_MINIONS
:
$(
hostname
-f
)}
KUBE_MINIONS
=
${
KUBE_MINIONS
:
$(
hostname
-f
)}
./apiserver
-
master
=
127.0.0.1:808
0
-etcd_servers
=
"
${
ETCD_SERVERS
}
"
--machines
=
"
${
KUBE_MINIONS
}
"
./apiserver
-
address
=
0.0.0.
0
-etcd_servers
=
"
${
ETCD_SERVERS
}
"
--machines
=
"
${
KUBE_MINIONS
}
"
build/run-images/base/Dockerfile
View file @
d6ee4f68
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
# This file creates a minimal container for running Kubernetes binaries
# This file creates a minimal container for running Kubernetes binaries
FROM
busybox
FROM
google/debian:wheezy
MAINTAINER
Joe Beda <jbeda@google.com>
MAINTAINER
Joe Beda <jbeda@google.com>
WORKDIR
/kubernetes
WORKDIR
/kubernetes
...
...
build/run-images/controller-manager/Dockerfile
View file @
d6ee4f68
...
@@ -22,4 +22,4 @@ ENV API_SERVER 127.0.0.1:8080
...
@@ -22,4 +22,4 @@ ENV API_SERVER 127.0.0.1:8080
ADD
. /kubernetes
ADD
. /kubernetes
CMD
[
'./run.sh'
]
CMD
[
"/kubernetes/run.sh"
]
build/run-images/proxy/Dockerfile
View file @
d6ee4f68
...
@@ -21,4 +21,4 @@ ENV ETCD_SERVERS http://127.0.0.1:4001
...
@@ -21,4 +21,4 @@ ENV ETCD_SERVERS http://127.0.0.1:4001
ADD
. /kubernetes
ADD
. /kubernetes
CMD
[
'./run.sh'
]
CMD
[
"/kubernetes/run.sh"
]
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