mirror of https://github.com/kubernetes/kops.git
23 lines
477 B
Markdown
23 lines
477 B
Markdown
# Kops HTTP API Server
|
|
|
|
# Building the kops API server
|
|
|
|
Set your docker registry
|
|
|
|
```bash
|
|
export DOCKER_REGISTRY=$registry
|
|
```
|
|
|
|
Build the kops API server container, and push the image up to your registry.
|
|
|
|
```bash
|
|
kops-server-push
|
|
```
|
|
|
|
# Deploying the kops API server to a cluster
|
|
|
|
From the kops 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
|
|
``` |