mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-17 17:16:30 +10:00
typo error and fixes proposed by Sameer
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
name: node
|
||||
version: 0.0.1
|
||||
version: 0.1.0
|
||||
description: NodeJs Event-driven I/O server-side JavaScript environment based on V8
|
||||
keywords:
|
||||
- node
|
||||
|
||||
@@ -51,7 +51,7 @@ The following tables lists the configurable parameters of the node chart and the
|
||||
| `imageTag` | node image Tag | `` |
|
||||
| `imagePullPolicy` | Image pull policy | `Always` if `imageTag` is `latest`, else `IfNotPresent` |
|
||||
| `repository` | Repo of the application | `git@github.com:jbianquetti-nami/simple-node-app.git` |
|
||||
| `revison` | Revision to checkout | `master` |
|
||||
| `revision` | Revision to checkout | `master` |
|
||||
| `mariadb.mariadbRootPassword` | MariaDB admin password | `nil` |
|
||||
| `serviceType` | Kubernetes Service type | `LoadBalancer` |
|
||||
| `persistence.enabled` | Enable persistence using PVC | `true` |
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
{{- else if contains "LoadBalancer" .Values.serviceType }}
|
||||
|
||||
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
||||
Watch the status with: 'kubectl get svc -w {{ template "fullname" . }}'
|
||||
Watch the status with: 'kubectl get svc -w {{ template "fullname" . }} --namespace {{ .Release.Namespace }}'
|
||||
|
||||
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
|
||||
echo http://$SERVICE_IP/
|
||||
|
||||
@@ -43,7 +43,7 @@ spec:
|
||||
httpGet:
|
||||
path: /
|
||||
port: http
|
||||
initialDelaySeconds: 60
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 1
|
||||
resources:
|
||||
{{ toYaml .Values.resources | indent 10 }}
|
||||
|
||||
@@ -2,11 +2,17 @@
|
||||
## ref: https://hub.docker.com/r/bitnami/node/tags/
|
||||
##
|
||||
image: bitnami/node
|
||||
|
||||
## Bitnami image Tag
|
||||
##
|
||||
imageTag: 7.0.0-r1
|
||||
|
||||
# Git repository http/https
|
||||
## Git repository http/https
|
||||
##
|
||||
repository: https://github.com/jbianquetti-nami/simple-node-app.git
|
||||
# Git repository revision to checkout
|
||||
|
||||
## Git repository revision to checkout
|
||||
##
|
||||
revision: master
|
||||
|
||||
## Specify a imagePullPolicy
|
||||
|
||||
Reference in New Issue
Block a user