From eb9c12357bbfca031d38f6283c7bddd641b0bd2c Mon Sep 17 00:00:00 2001 From: WSMathias Date: Thu, 23 Jul 2020 12:44:12 +0530 Subject: [PATCH] Update charts --- .../charts/drupal/README.md | 19 +++++++++---------- .../charts/drupal/values.yaml | 10 ++-------- .../charts/drupal/README.md | 19 +++++++++---------- .../charts/drupal/values.yaml | 10 ++-------- .../charts/drupal/README.md | 19 +++++++++---------- .../charts/drupal/values.yaml | 10 ++-------- .../charts/drupal/README.md | 19 +++++++++---------- .../charts/drupal/values.yaml | 10 ++-------- .../charts/drupal/README.md | 19 +++++++++---------- .../charts/drupal/values.yaml | 10 ++-------- .../charts/node/README.md | 4 ++-- 11 files changed, 57 insertions(+), 92 deletions(-) diff --git a/starterkits/drupal8-php-fpm-apache/charts/drupal/README.md b/starterkits/drupal8-php-fpm-apache/charts/drupal/README.md index 18528a0..5becd75 100644 --- a/starterkits/drupal8-php-fpm-apache/charts/drupal/README.md +++ b/starterkits/drupal8-php-fpm-apache/charts/drupal/README.md @@ -11,13 +11,12 @@ It deploys a drupal application. Optionally, you can set up an Ingress resource - Kubernetes 1.12+ - Helm 2.11+ or Helm 3.0-beta3+ -## Installing the Chart +## Installing the Chart (Helm3) To install the chart with the release name `my-release`: ```console -$ git clone https://github.com/srijanone/helm-chart -$ helm install --name my-release ./helm-chart/stable/drupal +$ helm install my-release ./charts/drupal ``` These commands deploy drupal on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. Also includes support for MariaDB chart out of the box. @@ -31,7 +30,7 @@ Due that the Helm Chart clones the application on the /app volume while the cont To uninstall/delete the `my-release` deployment: ```console -$ helm delete my-release +$ helm uninstall my-release ``` The command removes all the Kubernetes components associated with the chart and deletes the release. @@ -44,7 +43,7 @@ The following table lists the configurable parameters of the drupal chart and th | --------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------- | | `global.imageRegistry` | Global Docker image registry | `docker.io` | | `phpfpm.registry` | PHP-FPM image registry | `nil` | -| `phpfpm.repository` | PHP-FPM image name | `drupal:8` | +| `phpfpm.repository` | PHP-FPM image name | `drupal:demo` | | `phpfpm.pullPolicy` | PHP-FPM image pull policy | `IfNotPresent` | | `phpfpm.extraEnv` | PHP-FPM container environment variables | `nill` | | `phpfpm.command` | PHP-FPM container entry point | from image | @@ -89,9 +88,9 @@ The following table lists the configurable parameters of the drupal chart and th Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console -$ helm install --name my-release \ +$ helm install my-release \ --set replicas=2 \ - ./helm-chart/stable/drupal + ./charts/drupal ``` The above command clones the remote git repository to the `/app/` directory of the container. Additionally it sets the number of `replicas` to `2`. @@ -99,7 +98,7 @@ The above command clones the remote git repository to the `/app/` directory of Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, ```console -$ helm install --name my-release -f values.yaml ./charts/drupal +$ helm install my-release -f values.yaml ./charts/drupal ``` > **Tip**: You can use the default [values.yaml](values.yaml) @@ -143,9 +142,9 @@ ingress: - You should see a helm package named - `drupal-1.0.0.tgz`. - Upload the `drupal-1.0.0.tgz` helm package to s3 bucket : ``` - aws s3 cp drupal-1.0.0.tgz s3://s3-st-helm-dev/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 + aws s3 cp drupal-1.0.0.tgz s3://s3-helm/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 ``` - Upload the `values.yaml` to s3 bucket : ``` - aws s3 cp values-.yaml s3://s3-st-helm-dev/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 + aws s3 cp values-.yaml s3://s3-helm/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 ``` diff --git a/starterkits/drupal8-php-fpm-apache/charts/drupal/values.yaml b/starterkits/drupal8-php-fpm-apache/charts/drupal/values.yaml index 0be4e2a..f5e2738 100644 --- a/starterkits/drupal8-php-fpm-apache/charts/drupal/values.yaml +++ b/starterkits/drupal8-php-fpm-apache/charts/drupal/values.yaml @@ -8,7 +8,7 @@ global: phpfpm: image: # registry: docker.io - repository: srijanlabs/drupal:8 + repository: srijanlabs/drupal:demo ## tag: ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -33,7 +33,7 @@ phpfpm: ## Container Command # args: ["/start.sh"] - ## Envinronment variable to be passed to phpfpm container + ## Define custom environment variables to pass to the image here extraEnv: # - name: key # value: value @@ -146,12 +146,6 @@ applicationKind: Deployment ## replicas: 1 -## Define custom environment variables to pass to the image here -## -# extraEnv: -# - name: DRUPAL_HOST -# value: http://drupal-dev - ## Affinity for pod assignment ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## diff --git a/starterkits/drupal8-php-fpm-nginx/charts/drupal/README.md b/starterkits/drupal8-php-fpm-nginx/charts/drupal/README.md index 18528a0..5becd75 100644 --- a/starterkits/drupal8-php-fpm-nginx/charts/drupal/README.md +++ b/starterkits/drupal8-php-fpm-nginx/charts/drupal/README.md @@ -11,13 +11,12 @@ It deploys a drupal application. Optionally, you can set up an Ingress resource - Kubernetes 1.12+ - Helm 2.11+ or Helm 3.0-beta3+ -## Installing the Chart +## Installing the Chart (Helm3) To install the chart with the release name `my-release`: ```console -$ git clone https://github.com/srijanone/helm-chart -$ helm install --name my-release ./helm-chart/stable/drupal +$ helm install my-release ./charts/drupal ``` These commands deploy drupal on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. Also includes support for MariaDB chart out of the box. @@ -31,7 +30,7 @@ Due that the Helm Chart clones the application on the /app volume while the cont To uninstall/delete the `my-release` deployment: ```console -$ helm delete my-release +$ helm uninstall my-release ``` The command removes all the Kubernetes components associated with the chart and deletes the release. @@ -44,7 +43,7 @@ The following table lists the configurable parameters of the drupal chart and th | --------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------- | | `global.imageRegistry` | Global Docker image registry | `docker.io` | | `phpfpm.registry` | PHP-FPM image registry | `nil` | -| `phpfpm.repository` | PHP-FPM image name | `drupal:8` | +| `phpfpm.repository` | PHP-FPM image name | `drupal:demo` | | `phpfpm.pullPolicy` | PHP-FPM image pull policy | `IfNotPresent` | | `phpfpm.extraEnv` | PHP-FPM container environment variables | `nill` | | `phpfpm.command` | PHP-FPM container entry point | from image | @@ -89,9 +88,9 @@ The following table lists the configurable parameters of the drupal chart and th Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console -$ helm install --name my-release \ +$ helm install my-release \ --set replicas=2 \ - ./helm-chart/stable/drupal + ./charts/drupal ``` The above command clones the remote git repository to the `/app/` directory of the container. Additionally it sets the number of `replicas` to `2`. @@ -99,7 +98,7 @@ The above command clones the remote git repository to the `/app/` directory of Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, ```console -$ helm install --name my-release -f values.yaml ./charts/drupal +$ helm install my-release -f values.yaml ./charts/drupal ``` > **Tip**: You can use the default [values.yaml](values.yaml) @@ -143,9 +142,9 @@ ingress: - You should see a helm package named - `drupal-1.0.0.tgz`. - Upload the `drupal-1.0.0.tgz` helm package to s3 bucket : ``` - aws s3 cp drupal-1.0.0.tgz s3://s3-st-helm-dev/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 + aws s3 cp drupal-1.0.0.tgz s3://s3-helm/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 ``` - Upload the `values.yaml` to s3 bucket : ``` - aws s3 cp values-.yaml s3://s3-st-helm-dev/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 + aws s3 cp values-.yaml s3://s3-helm/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 ``` diff --git a/starterkits/drupal8-php-fpm-nginx/charts/drupal/values.yaml b/starterkits/drupal8-php-fpm-nginx/charts/drupal/values.yaml index 0be4e2a..f5e2738 100644 --- a/starterkits/drupal8-php-fpm-nginx/charts/drupal/values.yaml +++ b/starterkits/drupal8-php-fpm-nginx/charts/drupal/values.yaml @@ -8,7 +8,7 @@ global: phpfpm: image: # registry: docker.io - repository: srijanlabs/drupal:8 + repository: srijanlabs/drupal:demo ## tag: ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -33,7 +33,7 @@ phpfpm: ## Container Command # args: ["/start.sh"] - ## Envinronment variable to be passed to phpfpm container + ## Define custom environment variables to pass to the image here extraEnv: # - name: key # value: value @@ -146,12 +146,6 @@ applicationKind: Deployment ## replicas: 1 -## Define custom environment variables to pass to the image here -## -# extraEnv: -# - name: DRUPAL_HOST -# value: http://drupal-dev - ## Affinity for pod assignment ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## diff --git a/starterkits/drupal9-php-fpm-apache/charts/drupal/README.md b/starterkits/drupal9-php-fpm-apache/charts/drupal/README.md index 18528a0..5becd75 100644 --- a/starterkits/drupal9-php-fpm-apache/charts/drupal/README.md +++ b/starterkits/drupal9-php-fpm-apache/charts/drupal/README.md @@ -11,13 +11,12 @@ It deploys a drupal application. Optionally, you can set up an Ingress resource - Kubernetes 1.12+ - Helm 2.11+ or Helm 3.0-beta3+ -## Installing the Chart +## Installing the Chart (Helm3) To install the chart with the release name `my-release`: ```console -$ git clone https://github.com/srijanone/helm-chart -$ helm install --name my-release ./helm-chart/stable/drupal +$ helm install my-release ./charts/drupal ``` These commands deploy drupal on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. Also includes support for MariaDB chart out of the box. @@ -31,7 +30,7 @@ Due that the Helm Chart clones the application on the /app volume while the cont To uninstall/delete the `my-release` deployment: ```console -$ helm delete my-release +$ helm uninstall my-release ``` The command removes all the Kubernetes components associated with the chart and deletes the release. @@ -44,7 +43,7 @@ The following table lists the configurable parameters of the drupal chart and th | --------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------- | | `global.imageRegistry` | Global Docker image registry | `docker.io` | | `phpfpm.registry` | PHP-FPM image registry | `nil` | -| `phpfpm.repository` | PHP-FPM image name | `drupal:8` | +| `phpfpm.repository` | PHP-FPM image name | `drupal:demo` | | `phpfpm.pullPolicy` | PHP-FPM image pull policy | `IfNotPresent` | | `phpfpm.extraEnv` | PHP-FPM container environment variables | `nill` | | `phpfpm.command` | PHP-FPM container entry point | from image | @@ -89,9 +88,9 @@ The following table lists the configurable parameters of the drupal chart and th Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console -$ helm install --name my-release \ +$ helm install my-release \ --set replicas=2 \ - ./helm-chart/stable/drupal + ./charts/drupal ``` The above command clones the remote git repository to the `/app/` directory of the container. Additionally it sets the number of `replicas` to `2`. @@ -99,7 +98,7 @@ The above command clones the remote git repository to the `/app/` directory of Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, ```console -$ helm install --name my-release -f values.yaml ./charts/drupal +$ helm install my-release -f values.yaml ./charts/drupal ``` > **Tip**: You can use the default [values.yaml](values.yaml) @@ -143,9 +142,9 @@ ingress: - You should see a helm package named - `drupal-1.0.0.tgz`. - Upload the `drupal-1.0.0.tgz` helm package to s3 bucket : ``` - aws s3 cp drupal-1.0.0.tgz s3://s3-st-helm-dev/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 + aws s3 cp drupal-1.0.0.tgz s3://s3-helm/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 ``` - Upload the `values.yaml` to s3 bucket : ``` - aws s3 cp values-.yaml s3://s3-st-helm-dev/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 + aws s3 cp values-.yaml s3://s3-helm/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 ``` diff --git a/starterkits/drupal9-php-fpm-apache/charts/drupal/values.yaml b/starterkits/drupal9-php-fpm-apache/charts/drupal/values.yaml index 0be4e2a..f5e2738 100644 --- a/starterkits/drupal9-php-fpm-apache/charts/drupal/values.yaml +++ b/starterkits/drupal9-php-fpm-apache/charts/drupal/values.yaml @@ -8,7 +8,7 @@ global: phpfpm: image: # registry: docker.io - repository: srijanlabs/drupal:8 + repository: srijanlabs/drupal:demo ## tag: ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -33,7 +33,7 @@ phpfpm: ## Container Command # args: ["/start.sh"] - ## Envinronment variable to be passed to phpfpm container + ## Define custom environment variables to pass to the image here extraEnv: # - name: key # value: value @@ -146,12 +146,6 @@ applicationKind: Deployment ## replicas: 1 -## Define custom environment variables to pass to the image here -## -# extraEnv: -# - name: DRUPAL_HOST -# value: http://drupal-dev - ## Affinity for pod assignment ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## diff --git a/starterkits/drupal9-php-fpm-nginx/charts/drupal/README.md b/starterkits/drupal9-php-fpm-nginx/charts/drupal/README.md index 18528a0..5becd75 100644 --- a/starterkits/drupal9-php-fpm-nginx/charts/drupal/README.md +++ b/starterkits/drupal9-php-fpm-nginx/charts/drupal/README.md @@ -11,13 +11,12 @@ It deploys a drupal application. Optionally, you can set up an Ingress resource - Kubernetes 1.12+ - Helm 2.11+ or Helm 3.0-beta3+ -## Installing the Chart +## Installing the Chart (Helm3) To install the chart with the release name `my-release`: ```console -$ git clone https://github.com/srijanone/helm-chart -$ helm install --name my-release ./helm-chart/stable/drupal +$ helm install my-release ./charts/drupal ``` These commands deploy drupal on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. Also includes support for MariaDB chart out of the box. @@ -31,7 +30,7 @@ Due that the Helm Chart clones the application on the /app volume while the cont To uninstall/delete the `my-release` deployment: ```console -$ helm delete my-release +$ helm uninstall my-release ``` The command removes all the Kubernetes components associated with the chart and deletes the release. @@ -44,7 +43,7 @@ The following table lists the configurable parameters of the drupal chart and th | --------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------- | | `global.imageRegistry` | Global Docker image registry | `docker.io` | | `phpfpm.registry` | PHP-FPM image registry | `nil` | -| `phpfpm.repository` | PHP-FPM image name | `drupal:8` | +| `phpfpm.repository` | PHP-FPM image name | `drupal:demo` | | `phpfpm.pullPolicy` | PHP-FPM image pull policy | `IfNotPresent` | | `phpfpm.extraEnv` | PHP-FPM container environment variables | `nill` | | `phpfpm.command` | PHP-FPM container entry point | from image | @@ -89,9 +88,9 @@ The following table lists the configurable parameters of the drupal chart and th Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console -$ helm install --name my-release \ +$ helm install my-release \ --set replicas=2 \ - ./helm-chart/stable/drupal + ./charts/drupal ``` The above command clones the remote git repository to the `/app/` directory of the container. Additionally it sets the number of `replicas` to `2`. @@ -99,7 +98,7 @@ The above command clones the remote git repository to the `/app/` directory of Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, ```console -$ helm install --name my-release -f values.yaml ./charts/drupal +$ helm install my-release -f values.yaml ./charts/drupal ``` > **Tip**: You can use the default [values.yaml](values.yaml) @@ -143,9 +142,9 @@ ingress: - You should see a helm package named - `drupal-1.0.0.tgz`. - Upload the `drupal-1.0.0.tgz` helm package to s3 bucket : ``` - aws s3 cp drupal-1.0.0.tgz s3://s3-st-helm-dev/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 + aws s3 cp drupal-1.0.0.tgz s3://s3-helm/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 ``` - Upload the `values.yaml` to s3 bucket : ``` - aws s3 cp values-.yaml s3://s3-st-helm-dev/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 + aws s3 cp values-.yaml s3://s3-helm/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 ``` diff --git a/starterkits/drupal9-php-fpm-nginx/charts/drupal/values.yaml b/starterkits/drupal9-php-fpm-nginx/charts/drupal/values.yaml index 0be4e2a..f5e2738 100644 --- a/starterkits/drupal9-php-fpm-nginx/charts/drupal/values.yaml +++ b/starterkits/drupal9-php-fpm-nginx/charts/drupal/values.yaml @@ -8,7 +8,7 @@ global: phpfpm: image: # registry: docker.io - repository: srijanlabs/drupal:8 + repository: srijanlabs/drupal:demo ## tag: ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -33,7 +33,7 @@ phpfpm: ## Container Command # args: ["/start.sh"] - ## Envinronment variable to be passed to phpfpm container + ## Define custom environment variables to pass to the image here extraEnv: # - name: key # value: value @@ -146,12 +146,6 @@ applicationKind: Deployment ## replicas: 1 -## Define custom environment variables to pass to the image here -## -# extraEnv: -# - name: DRUPAL_HOST -# value: http://drupal-dev - ## Affinity for pod assignment ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## diff --git a/starterkits/ezcontent8-php-fpm-apache/charts/drupal/README.md b/starterkits/ezcontent8-php-fpm-apache/charts/drupal/README.md index 18528a0..5becd75 100644 --- a/starterkits/ezcontent8-php-fpm-apache/charts/drupal/README.md +++ b/starterkits/ezcontent8-php-fpm-apache/charts/drupal/README.md @@ -11,13 +11,12 @@ It deploys a drupal application. Optionally, you can set up an Ingress resource - Kubernetes 1.12+ - Helm 2.11+ or Helm 3.0-beta3+ -## Installing the Chart +## Installing the Chart (Helm3) To install the chart with the release name `my-release`: ```console -$ git clone https://github.com/srijanone/helm-chart -$ helm install --name my-release ./helm-chart/stable/drupal +$ helm install my-release ./charts/drupal ``` These commands deploy drupal on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. Also includes support for MariaDB chart out of the box. @@ -31,7 +30,7 @@ Due that the Helm Chart clones the application on the /app volume while the cont To uninstall/delete the `my-release` deployment: ```console -$ helm delete my-release +$ helm uninstall my-release ``` The command removes all the Kubernetes components associated with the chart and deletes the release. @@ -44,7 +43,7 @@ The following table lists the configurable parameters of the drupal chart and th | --------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------- | | `global.imageRegistry` | Global Docker image registry | `docker.io` | | `phpfpm.registry` | PHP-FPM image registry | `nil` | -| `phpfpm.repository` | PHP-FPM image name | `drupal:8` | +| `phpfpm.repository` | PHP-FPM image name | `drupal:demo` | | `phpfpm.pullPolicy` | PHP-FPM image pull policy | `IfNotPresent` | | `phpfpm.extraEnv` | PHP-FPM container environment variables | `nill` | | `phpfpm.command` | PHP-FPM container entry point | from image | @@ -89,9 +88,9 @@ The following table lists the configurable parameters of the drupal chart and th Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console -$ helm install --name my-release \ +$ helm install my-release \ --set replicas=2 \ - ./helm-chart/stable/drupal + ./charts/drupal ``` The above command clones the remote git repository to the `/app/` directory of the container. Additionally it sets the number of `replicas` to `2`. @@ -99,7 +98,7 @@ The above command clones the remote git repository to the `/app/` directory of Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, ```console -$ helm install --name my-release -f values.yaml ./charts/drupal +$ helm install my-release -f values.yaml ./charts/drupal ``` > **Tip**: You can use the default [values.yaml](values.yaml) @@ -143,9 +142,9 @@ ingress: - You should see a helm package named - `drupal-1.0.0.tgz`. - Upload the `drupal-1.0.0.tgz` helm package to s3 bucket : ``` - aws s3 cp drupal-1.0.0.tgz s3://s3-st-helm-dev/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 + aws s3 cp drupal-1.0.0.tgz s3://s3-helm/drupal/drupal-1.0.0.tgz --sse=AES256 --region=ap-southeast-1 ``` - Upload the `values.yaml` to s3 bucket : ``` - aws s3 cp values-.yaml s3://s3-st-helm-dev/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 + aws s3 cp values-.yaml s3://s3-helm/drupal/values/st--values.yaml --sse=AES256 --region=ap-southeast-1 ``` diff --git a/starterkits/ezcontent8-php-fpm-apache/charts/drupal/values.yaml b/starterkits/ezcontent8-php-fpm-apache/charts/drupal/values.yaml index 0be4e2a..f5e2738 100644 --- a/starterkits/ezcontent8-php-fpm-apache/charts/drupal/values.yaml +++ b/starterkits/ezcontent8-php-fpm-apache/charts/drupal/values.yaml @@ -8,7 +8,7 @@ global: phpfpm: image: # registry: docker.io - repository: srijanlabs/drupal:8 + repository: srijanlabs/drupal:demo ## tag: ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -33,7 +33,7 @@ phpfpm: ## Container Command # args: ["/start.sh"] - ## Envinronment variable to be passed to phpfpm container + ## Define custom environment variables to pass to the image here extraEnv: # - name: key # value: value @@ -146,12 +146,6 @@ applicationKind: Deployment ## replicas: 1 -## Define custom environment variables to pass to the image here -## -# extraEnv: -# - name: DRUPAL_HOST -# value: http://drupal-dev - ## Affinity for pod assignment ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## diff --git a/starterkits/node-express-postgres/charts/node/README.md b/starterkits/node-express-postgres/charts/node/README.md index 9d19356..6cb4644 100644 --- a/starterkits/node-express-postgres/charts/node/README.md +++ b/starterkits/node-express-postgres/charts/node/README.md @@ -16,7 +16,7 @@ It deploys a Node application. Optionally, you can set up an Ingress resource to To install the chart with the release name `my-release`: ```console -$ helm install my-release .node +$ helm install my-release ./charts/node ``` @@ -31,7 +31,7 @@ Due that the Helm Chart clones the application on the /app volume while the cont To uninstall/delete the `my-release` deployment: ```console -$ helm delete my-release +$ helm uninstall my-release ``` The command removes all the Kubernetes components associated with the chart and deletes the release.