diff --git a/nginx/Chart.yaml b/nginx/Chart.yaml new file mode 100644 index 0000000000..0cce4eecb4 --- /dev/null +++ b/nginx/Chart.yaml @@ -0,0 +1,8 @@ +name: nginx +home: https://www.nginx.com +version: 0.1.0 +description: Nginx http service +maintainers: + - Rimas Mocevicius +details: + This chart contains a basic nginx http service useful in verifying proof of concept. diff --git a/nginx/README.md b/nginx/README.md new file mode 100644 index 0000000000..dae0d5ad45 --- /dev/null +++ b/nginx/README.md @@ -0,0 +1,4 @@ +# Nginx + +This Chart provides a basic runing Nginx http service useful in verifying proof of concept. + diff --git a/nginx/manifests/nginx-rc.yaml b/nginx/manifests/nginx-rc.yaml new file mode 100644 index 0000000000..f8251f1062 --- /dev/null +++ b/nginx/manifests/nginx-rc.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: ReplicationController +metadata: + name: nginx +spec: + replicas: 1 + template: + metadata: + labels: + heritage: helm + spec: + containers: + - name: nginxhttp + image: nginx + ports: + - containerPort: 80