Last active
August 2, 2017 03:22
-
-
Save mugithi/a7c539858236d400f8a31d9a16ca0a6d 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
--- | |
# Default values for wordpress-isaack. | |
# This is a YAML-formatted file. | |
# Declare variables to be passed into your templates. | |
replicaCount: 1 | |
image: | |
repository: mugithi/blog | |
tag: latest | |
registry: index.docker.io | |
registrysecrets: myregistrykey | |
pullPolicy: Always | |
service: | |
name: isaack-io | |
type: ClusterIP | |
externalPort: 4000 | |
internalPort: 4000 | |
ingress: | |
enabled: true | |
# Used to create Ingress record (should used with service.type: ClusterIP). | |
hosts: blog.isaack.io | |
annotations: | |
ingress.kubernetes.io/ssl-redirect: "true" | |
kubernetes.io/ingress.class: nginx | |
kubernetes.io/tls-acme: "true" | |
tls: | |
# Secrets must be manually created in the namespace. | |
secretName: blog-isaack-io | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment