mirror of https://github.com/kubernetes/kops.git
remove code: remove kops-server chart
Signed-off-by: guohaowang <wangguohao.2009@gmail.com>
This commit is contained in:
parent
8a146b1c64
commit
857bdb0ec0
|
@ -1,7 +0,0 @@
|
||||||
name: kops
|
|
||||||
home: https://github.com/kubernetes/kops
|
|
||||||
version: 1.0.0
|
|
||||||
description: Kubernetes kops API server
|
|
||||||
maintainers:
|
|
||||||
- name: Kris Nova
|
|
||||||
email: kris@nivenly.com
|
|
|
@ -1,16 +0,0 @@
|
||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: kops-api-server
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: kops
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: kops
|
|
||||||
image: krisnova/kops:latest
|
|
||||||
ports:
|
|
||||||
- containerPort: 80
|
|
|
@ -1,16 +0,0 @@
|
||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: kops-etcd
|
|
||||||
spec:
|
|
||||||
replicas: 1
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: etcd
|
|
||||||
spec:
|
|
||||||
containers:
|
|
||||||
- name: etcd
|
|
||||||
image: quay.io/coreos/etcd:latest
|
|
||||||
ports:
|
|
||||||
- containerPort: 2379
|
|
|
@ -1,5 +0,0 @@
|
||||||
# kops global configuration
|
|
||||||
global:
|
|
||||||
|
|
||||||
# This is just a dummy directive for now..
|
|
||||||
storage_backend: "etcd"
|
|
|
@ -17,17 +17,8 @@ make kops-server-push
|
||||||
|
|
||||||
# Deploying the kops API server to a cluster
|
# Deploying the kops API server to a cluster
|
||||||
|
|
||||||
Choose one of the following methods (**only for develop**)
|
apply the file (modify the image)
|
||||||
|
|
||||||
* the method one: apply the file
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
kubectl apply -f docs/kops-server/kops-server.yaml
|
kubectl apply -f docs/kops-server/kops-server.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
* From the keops directory run the following `helm` command. More information on `helm` can be found [here](https://github.com/kubernetes/helm)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
helm install charts/kops --namespace kops
|
|
||||||
```
|
|
Loading…
Reference in New Issue