Last active
August 2, 2017 03:22
-
-
Save mugithi/9e3858bdf71f2f52583dd74ff8413f4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
helm install infra-isaack-io --dry-run --debug | |
[debug] Created tunnel using local port: '51663' | |
[debug] SERVER: "localhost:51663" | |
[debug] Original chart version: "" | |
[debug] CHART PATH: /Users/isaackkaranja/github/blog-isaack-io-on-k8s/infra-isaack-io | |
NAME: oppulent-lizzard | |
REVISION: 1 | |
RELEASED: Tue Aug 1 08:37:39 2017 | |
CHART: isaack-io-0.1.0 | |
USER-SUPPLIED VALUES: | |
{} | |
COMPUTED VALUES: | |
image: | |
pullPolicy: Always | |
registry: index.docker.io | |
registrysecrets: myregistrykey | |
repository: mugithi/blog | |
tag: latest | |
ingress: | |
annotations: | |
ingress.kubernetes.io/ssl-redirect: "true" | |
kubernetes.io/ingress.class: nginx | |
kubernetes.io/tls-acme: "true" | |
enabled: true | |
hosts: blog.isaack.io | |
tls: | |
secretName: blog-isaack-io | |
replicaCount: 1 | |
resources: {} | |
service: | |
externalPort: 4000 | |
internalPort: 4000 | |
name: isaack-io | |
type: ClusterIP | |
HOOKS: | |
MANIFEST: | |
--- | |
# Source: isaack-io/templates/service.yaml | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: oppulent-lizzard-isaack-io | |
labels: | |
app: isaack-io | |
chart: isaack-io-0.1.0 | |
release: oppulent-lizzard | |
heritage: Tiller | |
spec: | |
type: ClusterIP | |
ports: | |
- port: 4000 | |
targetPort: 4000 | |
protocol: TCP | |
name: isaack-io | |
selector: | |
app: isaack-io | |
release: oppulent-lizzard | |
--- | |
# Source: isaack-io/templates/deployment.yaml | |
apiVersion: v1 | |
kind: ReplicationController | |
metadata: | |
name: oppulent-lizzard-isaack-io | |
labels: | |
app: isaack-io | |
chart: isaack-io-0.1.0 | |
release: oppulent-lizzard | |
heritage: Tiller | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: isaack-io | |
release: oppulent-lizzard | |
spec: | |
containers: | |
- name: isaack-io | |
image: "index.docker.io/mugithi/blog:latest" | |
imagePullPolicy: Always | |
args: | |
- serve | |
- -H | |
- '0.0.0.0' | |
ports: | |
- containerPort: 4000 | |
livenessProbe: | |
httpGet: | |
path: / | |
port: 4000 | |
readinessProbe: | |
httpGet: | |
path: / | |
port: 4000 | |
resources: | |
{} | |
imagePullSecrets: | |
- name: myregistrykey | |
--- | |
# Source: isaack-io/templates/ingress.yaml | |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: oppulent-lizzard-isaack-io | |
labels: | |
app: isaack-io | |
# chart: isaack-io-0.1.0 | |
# release: oppulent-lizzard | |
# heritage: Tiller | |
annotations: | |
ingress.kubernetes.io/ssl-redirect: "true" | |
kubernetes.io/ingress.class: "nginx" | |
kubernetes.io/tls-acme: "true" | |
spec: | |
rules: | |
- host: blog.isaack.io | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: oppulent-lizzard-isaack-io | |
servicePort: 4000 | |
tls: | |
- hosts: | |
- blog.isaack.io | |
secretName: blog-isaack-io |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment