From fbb37dd97fdf29c16e17371530da4d4b40e3ae9c Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Mon, 23 Oct 2023 16:17:19 -0400 Subject: [PATCH 01/10] Resolve issue so subPath: true works correctly --- charts/rstudio-library/Chart.yaml | 4 ++-- charts/rstudio-library/NEWS.md | 4 ++++ charts/rstudio-library/templates/_license-mount.tpl | 7 ++++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/charts/rstudio-library/Chart.yaml b/charts/rstudio-library/Chart.yaml index 3d3a9d7f..33169303 100644 --- a/charts/rstudio-library/Chart.yaml +++ b/charts/rstudio-library/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: rstudio-library description: Helm library helpers for use by Official RStudio charts type: library -version: 0.1.26 -appVersion: 0.1.26 +version: 0.1.27 +appVersion: 0.1.27 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png home: https://www.rstudio.com diff --git a/charts/rstudio-library/NEWS.md b/charts/rstudio-library/NEWS.md index ca100b73..af18463a 100644 --- a/charts/rstudio-library/NEWS.md +++ b/charts/rstudio-library/NEWS.md @@ -1,3 +1,7 @@ +# 0.1.27 + +- Fix an issue with `mountPath` and `subPath` when `license.file.mountSubPath` is `true` ([#427](https://github.com/rstudio/helm/issues/427)). + # 0.1.26 - Add the capability to add labels to service accounts diff --git a/charts/rstudio-library/templates/_license-mount.tpl b/charts/rstudio-library/templates/_license-mount.tpl index 88cae857..898d8e59 100644 --- a/charts/rstudio-library/templates/_license-mount.tpl +++ b/charts/rstudio-library/templates/_license-mount.tpl @@ -6,9 +6,14 @@ {{- define "rstudio-library.license-mount" -}} {{- if or .license.file.contents .license.file.secret }} - name: license-file - mountPath: {{ .license.file.mountPath | quote }} {{- if .license.file.mountSubPath }} + mountPath: "{{ .license.file.mountPath }}/{{ .license.file.secretKey }}" subPath: {{ .license.file.secretKey | quote }} + {{ else }} + mountPath: {{ .license.file.mountPath | quote }} {{- end }} {{- end }} {{- end -}}{{- /* end define template */ -}} + + + From 212744abcd63b7a3fa0ee85517e892ed59828dda Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 23 Oct 2023 20:21:58 +0000 Subject: [PATCH 02/10] Update helm-docs and README.md --- charts/rstudio-library/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/rstudio-library/README.md b/charts/rstudio-library/README.md index 2b634c5a..3d41b94d 100644 --- a/charts/rstudio-library/README.md +++ b/charts/rstudio-library/README.md @@ -1,6 +1,6 @@ # rstudio-library -![Version: 0.1.26](https://img.shields.io/badge/Version-0.1.26-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) ![AppVersion: 0.1.26](https://img.shields.io/badge/AppVersion-0.1.26-informational?style=flat-square) +![Version: 0.1.27](https://img.shields.io/badge/Version-0.1.27-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) ![AppVersion: 0.1.27](https://img.shields.io/badge/AppVersion-0.1.27-informational?style=flat-square) #### _Helm library helpers for use by Official RStudio charts_ From 1f4815cab0f97956069d328fddb327746a991751 Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Mon, 23 Oct 2023 17:26:37 -0400 Subject: [PATCH 03/10] Remove whitespace --- charts/rstudio-library/templates/_license-mount.tpl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/charts/rstudio-library/templates/_license-mount.tpl b/charts/rstudio-library/templates/_license-mount.tpl index 898d8e59..ec6f2b27 100644 --- a/charts/rstudio-library/templates/_license-mount.tpl +++ b/charts/rstudio-library/templates/_license-mount.tpl @@ -13,7 +13,4 @@ mountPath: {{ .license.file.mountPath | quote }} {{- end }} {{- end }} -{{- end -}}{{- /* end define template */ -}} - - - +{{- end -}}{{- /* end define template */ -}} \ No newline at end of file From 3e73ba034d0062a7a7ff4a20bfdf6968e5ce08a6 Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Tue, 24 Oct 2023 10:05:52 -0400 Subject: [PATCH 04/10] Bump all products to use rstudio-library 0.1.27 --- charts/rstudio-connect/Chart.yaml | 4 ++-- charts/rstudio-connect/NEWS.md | 5 +++++ charts/rstudio-pm/Chart.yaml | 4 ++-- charts/rstudio-pm/NEWS.md | 5 +++++ charts/rstudio-workbench/Chart.yaml | 4 ++-- charts/rstudio-workbench/NEWS.md | 5 +++++ 6 files changed, 21 insertions(+), 6 deletions(-) diff --git a/charts/rstudio-connect/Chart.yaml b/charts/rstudio-connect/Chart.yaml index a449462e..48c49611 100644 --- a/charts/rstudio-connect/Chart.yaml +++ b/charts/rstudio-connect/Chart.yaml @@ -1,6 +1,6 @@ name: rstudio-connect description: Official Helm chart for RStudio Connect -version: 0.5.7 +version: 0.5.8 apiVersion: v2 appVersion: 2023.09.0 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png @@ -13,7 +13,7 @@ maintainers: url: https://github.com/sol-eng dependencies: - name: rstudio-library - version: 0.1.26 + version: 0.1.27 repository: file://../rstudio-library annotations: artifacthub.io/images: | diff --git a/charts/rstudio-connect/NEWS.md b/charts/rstudio-connect/NEWS.md index c19ffc9b..82c1d0ea 100644 --- a/charts/rstudio-connect/NEWS.md +++ b/charts/rstudio-connect/NEWS.md @@ -1,3 +1,8 @@ +# 0.5.8 + +- Bump rstudio-library to `0.1.27` + - Fix an issue with `mountPath` and `subPath` when `license.file.mountSubPath` is `true` + # 0.5.7 - Add support for setting `tolerations` for Connect diff --git a/charts/rstudio-pm/Chart.yaml b/charts/rstudio-pm/Chart.yaml index 68be4c2f..a2011ed4 100644 --- a/charts/rstudio-pm/Chart.yaml +++ b/charts/rstudio-pm/Chart.yaml @@ -1,6 +1,6 @@ name: rstudio-pm description: Official Helm chart for RStudio Package Manager -version: 0.5.14 +version: 0.5.15 apiVersion: v2 appVersion: 2023.08.0 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png @@ -14,7 +14,7 @@ maintainers: url: https://github.com/rstudio/helm dependencies: - name: rstudio-library - version: 0.1.26 + version: 0.1.27 repository: file://../rstudio-library annotations: artifacthub.io/images: | diff --git a/charts/rstudio-pm/NEWS.md b/charts/rstudio-pm/NEWS.md index 9f886dfb..389db462 100644 --- a/charts/rstudio-pm/NEWS.md +++ b/charts/rstudio-pm/NEWS.md @@ -1,3 +1,8 @@ +# 0.5.15 + +- Bump rstudio-library to `0.1.27` + - Fix an issue with `mountPath` and `subPath` when `license.file.mountSubPath` is `true` + # 0.5.14 - Update default Posit Package Manager version to 2023.08.0-16 diff --git a/charts/rstudio-workbench/Chart.yaml b/charts/rstudio-workbench/Chart.yaml index 0baf485e..6ed348ae 100644 --- a/charts/rstudio-workbench/Chart.yaml +++ b/charts/rstudio-workbench/Chart.yaml @@ -1,6 +1,6 @@ name: rstudio-workbench description: Official Helm chart for RStudio Workbench -version: 0.6.9 +version: 0.6.10 apiVersion: v2 appVersion: 2023.09.1 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png @@ -13,7 +13,7 @@ maintainers: url: https://github.com/sol-eng dependencies: - name: rstudio-library - version: 0.1.26 + version: 0.1.27 repository: file://../rstudio-library annotations: artifacthub.io/images: | diff --git a/charts/rstudio-workbench/NEWS.md b/charts/rstudio-workbench/NEWS.md index 18fe162b..141dda2b 100644 --- a/charts/rstudio-workbench/NEWS.md +++ b/charts/rstudio-workbench/NEWS.md @@ -1,3 +1,8 @@ +# 0.6.10 + +- Bump rstudio-library to `0.1.27` + - Fix an issue with `mountPath` and `subPath` when `license.file.mountSubPath` is `true` + # 0.6.9 - Bump Workbench version to 2023.09.1 From 476753322cb56ca4ec2257ccb16c2f6b5e604a33 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 24 Oct 2023 14:06:28 +0000 Subject: [PATCH 05/10] Update helm-docs and README.md --- charts/rstudio-connect/README.md | 6 +++--- charts/rstudio-pm/README.md | 6 +++--- charts/rstudio-workbench/README.md | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/charts/rstudio-connect/README.md b/charts/rstudio-connect/README.md index 436bc46e..7df64e9b 100644 --- a/charts/rstudio-connect/README.md +++ b/charts/rstudio-connect/README.md @@ -1,6 +1,6 @@ # RStudio Connect -![Version: 0.5.7](https://img.shields.io/badge/Version-0.5.7-informational?style=flat-square) ![AppVersion: 2023.09.0](https://img.shields.io/badge/AppVersion-2023.09.0-informational?style=flat-square) +![Version: 0.5.8](https://img.shields.io/badge/Version-0.5.8-informational?style=flat-square) ![AppVersion: 2023.09.0](https://img.shields.io/badge/AppVersion-2023.09.0-informational?style=flat-square) #### _Official Helm chart for RStudio Connect_ @@ -26,11 +26,11 @@ To ensure reproducibility in your environment and insulate yourself from future ## Installing the Chart -To install the chart with the release name `my-release` at version 0.5.7: +To install the chart with the release name `my-release` at version 0.5.8: ```bash helm repo add rstudio https://helm.rstudio.com -helm upgrade --install my-release rstudio/rstudio-connect --version=0.5.7 +helm upgrade --install my-release rstudio/rstudio-connect --version=0.5.8 ``` To explore other chart versions, take a look at: diff --git a/charts/rstudio-pm/README.md b/charts/rstudio-pm/README.md index d0c70f9f..344a5cc6 100644 --- a/charts/rstudio-pm/README.md +++ b/charts/rstudio-pm/README.md @@ -1,6 +1,6 @@ # RStudio Package Manager -![Version: 0.5.14](https://img.shields.io/badge/Version-0.5.14-informational?style=flat-square) ![AppVersion: 2023.08.0](https://img.shields.io/badge/AppVersion-2023.08.0-informational?style=flat-square) +![Version: 0.5.15](https://img.shields.io/badge/Version-0.5.15-informational?style=flat-square) ![AppVersion: 2023.08.0](https://img.shields.io/badge/AppVersion-2023.08.0-informational?style=flat-square) #### _Official Helm chart for RStudio Package Manager_ @@ -21,11 +21,11 @@ To ensure a stable production deployment, please: ## Installing the Chart -To install the chart with the release name `my-release` at version 0.5.14: +To install the chart with the release name `my-release` at version 0.5.15: ```bash helm repo add rstudio https://helm.rstudio.com -helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.14 +helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.15 ``` To explore other chart versions, take a look at: diff --git a/charts/rstudio-workbench/README.md b/charts/rstudio-workbench/README.md index fa404372..301118b7 100644 --- a/charts/rstudio-workbench/README.md +++ b/charts/rstudio-workbench/README.md @@ -1,6 +1,6 @@ # RStudio Workbench -![Version: 0.6.9](https://img.shields.io/badge/Version-0.6.9-informational?style=flat-square) ![AppVersion: 2023.09.1](https://img.shields.io/badge/AppVersion-2023.09.1-informational?style=flat-square) +![Version: 0.6.10](https://img.shields.io/badge/Version-0.6.10-informational?style=flat-square) ![AppVersion: 2023.09.1](https://img.shields.io/badge/AppVersion-2023.09.1-informational?style=flat-square) #### _Official Helm chart for RStudio Workbench_ @@ -27,11 +27,11 @@ To ensure a stable production deployment, please: ## Installing the Chart -To install the chart with the release name `my-release` at version 0.6.9: +To install the chart with the release name `my-release` at version 0.6.10: ```bash helm repo add rstudio https://helm.rstudio.com -helm upgrade --install my-release rstudio/rstudio-workbench --version=0.6.9 +helm upgrade --install my-release rstudio/rstudio-workbench --version=0.6.10 ``` To explore other chart versions, take a look at: From 0bb613f44fde558a27da2de029edbc6b5d739f28 Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Tue, 24 Oct 2023 10:13:05 -0400 Subject: [PATCH 06/10] Update Chart.lock for each product --- charts/rstudio-connect/Chart.lock | 6 +++--- charts/rstudio-pm/Chart.lock | 6 +++--- charts/rstudio-workbench/Chart.lock | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/charts/rstudio-connect/Chart.lock b/charts/rstudio-connect/Chart.lock index 2158d987..a6a08723 100644 --- a/charts/rstudio-connect/Chart.lock +++ b/charts/rstudio-connect/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: rstudio-library repository: file://../rstudio-library - version: 0.1.26 -digest: sha256:a44e6522d87fad58a52c147c0f46684f14934b392df1a9fd195e284b978ec378 -generated: "2023-07-21T10:31:31.079888-04:00" + version: 0.1.27 +digest: sha256:623d9c7ae9b9501578e55f4dd041a934cc67546c2a5608678d88ac538b2cef00 +generated: "2023-10-24T10:12:40.139874-04:00" diff --git a/charts/rstudio-pm/Chart.lock b/charts/rstudio-pm/Chart.lock index a2ed8704..ad095e92 100644 --- a/charts/rstudio-pm/Chart.lock +++ b/charts/rstudio-pm/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: rstudio-library repository: file://../rstudio-library - version: 0.1.26 -digest: sha256:a44e6522d87fad58a52c147c0f46684f14934b392df1a9fd195e284b978ec378 -generated: "2023-07-21T12:24:55.582151-04:00" + version: 0.1.27 +digest: sha256:623d9c7ae9b9501578e55f4dd041a934cc67546c2a5608678d88ac538b2cef00 +generated: "2023-10-24T10:12:51.381873-04:00" diff --git a/charts/rstudio-workbench/Chart.lock b/charts/rstudio-workbench/Chart.lock index f85e68b0..ffd1dc50 100644 --- a/charts/rstudio-workbench/Chart.lock +++ b/charts/rstudio-workbench/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: rstudio-library repository: file://../rstudio-library - version: 0.1.26 -digest: sha256:a44e6522d87fad58a52c147c0f46684f14934b392df1a9fd195e284b978ec378 -generated: "2023-07-21T12:24:58.270579-04:00" + version: 0.1.27 +digest: sha256:623d9c7ae9b9501578e55f4dd041a934cc67546c2a5608678d88ac538b2cef00 +generated: "2023-10-24T10:12:25.831246-04:00" From db4ceb58ed34e285c946022223b4baf3af4a9db0 Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Tue, 24 Oct 2023 10:19:29 -0400 Subject: [PATCH 07/10] Update rstudio-launcher-rbac to latest rstudio-library --- charts/rstudio-launcher-rbac/Chart.lock | 6 +++--- charts/rstudio-launcher-rbac/Chart.yaml | 6 +++--- charts/rstudio-launcher-rbac/NEWS.md | 5 +++++ charts/rstudio-launcher-rbac/README.md | 4 ++-- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/charts/rstudio-launcher-rbac/Chart.lock b/charts/rstudio-launcher-rbac/Chart.lock index bc4ac73a..d4f826bc 100644 --- a/charts/rstudio-launcher-rbac/Chart.lock +++ b/charts/rstudio-launcher-rbac/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: rstudio-library repository: file://../rstudio-library - version: 0.1.26 -digest: sha256:a44e6522d87fad58a52c147c0f46684f14934b392df1a9fd195e284b978ec378 -generated: "2023-07-21T12:24:53.177096-04:00" + version: 0.1.27 +digest: sha256:623d9c7ae9b9501578e55f4dd041a934cc67546c2a5608678d88ac538b2cef00 +generated: "2023-10-24T10:18:58.864999-04:00" diff --git a/charts/rstudio-launcher-rbac/Chart.yaml b/charts/rstudio-launcher-rbac/Chart.yaml index fb90d66f..5edceabf 100644 --- a/charts/rstudio-launcher-rbac/Chart.yaml +++ b/charts/rstudio-launcher-rbac/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: rstudio-launcher-rbac description: RBAC definition for the RStudio Job Launcher type: application -version: 0.2.17 -appVersion: 0.2.17 +version: 0.2.18 +appVersion: 0.2.18 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png sources: - https://github.com/rstudio/helm @@ -13,7 +13,7 @@ maintainers: url: https://github.com/sol-eng dependencies: - name: rstudio-library - version: 0.1.26 + version: 0.1.27 repository: file://../rstudio-library keywords: - "data science" diff --git a/charts/rstudio-launcher-rbac/NEWS.md b/charts/rstudio-launcher-rbac/NEWS.md index 396fb900..7259a94b 100644 --- a/charts/rstudio-launcher-rbac/NEWS.md +++ b/charts/rstudio-launcher-rbac/NEWS.md @@ -1,3 +1,8 @@ +# 0.2.18 + +- Bump rstudio-library to `0.1.27` + - Fix an issue with `mountPath` and `subPath` when `license.file.mountSubPath` is `true` + # 0.2.17 - Update `rstudio-library` chart dependency diff --git a/charts/rstudio-launcher-rbac/README.md b/charts/rstudio-launcher-rbac/README.md index 7f6aa6e2..9d5d62fd 100644 --- a/charts/rstudio-launcher-rbac/README.md +++ b/charts/rstudio-launcher-rbac/README.md @@ -18,11 +18,11 @@ To ensure a stable production deployment, please: ## Installing the Chart -To install the chart with the release name `my-release` at version 0.2.17: +To install the chart with the release name `my-release` at version 0.2.18: ```bash helm repo add rstudio https://helm.rstudio.com -helm upgrade --install my-release rstudio/rstudio-launcher-rbac --version=0.2.17 +helm upgrade --install my-release rstudio/rstudio-launcher-rbac --version=0.2.18 ``` To explore other chart versions, take a look at: From 9d1652c85f9f16084bb54f620b384c863cae2071 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 24 Oct 2023 14:20:05 +0000 Subject: [PATCH 08/10] Update helm-docs and README.md --- charts/rstudio-launcher-rbac/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/rstudio-launcher-rbac/README.md b/charts/rstudio-launcher-rbac/README.md index 9d5d62fd..c09f746d 100644 --- a/charts/rstudio-launcher-rbac/README.md +++ b/charts/rstudio-launcher-rbac/README.md @@ -1,6 +1,6 @@ # rstudio-launcher-rbac -![Version: 0.2.17](https://img.shields.io/badge/Version-0.2.17-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.17](https://img.shields.io/badge/AppVersion-0.2.17-informational?style=flat-square) +![Version: 0.2.18](https://img.shields.io/badge/Version-0.2.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.18](https://img.shields.io/badge/AppVersion-0.2.18-informational?style=flat-square) #### _RBAC definition for the RStudio Job Launcher_ From ad63956601daadf93ed6d6f50922694685b2f439 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 24 Oct 2023 14:20:35 +0000 Subject: [PATCH 09/10] Update rbac yaml --- .../rbac/rstudio-launcher-rbac-0.2.18.yaml | 88 +++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 examples/rbac/rstudio-launcher-rbac-0.2.18.yaml diff --git a/examples/rbac/rstudio-launcher-rbac-0.2.18.yaml b/examples/rbac/rstudio-launcher-rbac-0.2.18.yaml new file mode 100644 index 00000000..3b322f8d --- /dev/null +++ b/examples/rbac/rstudio-launcher-rbac-0.2.18.yaml @@ -0,0 +1,88 @@ +--- +# Source: rstudio-launcher-rbac/templates/rbac.yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: rstudio-launcher-rbac +--- +# Source: rstudio-launcher-rbac/templates/rbac.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: rstudio-launcher-rbac +rules: + - apiGroups: + - "" + resources: + - "serviceaccounts" + verbs: + - "list" + - apiGroups: + - "" + resources: + - "pods/log" + verbs: + - "get" + - "watch" + - "list" + - apiGroups: + - "" + resources: + - "pods" + - "pods/attach" + - "pods/exec" + verbs: + - "get" + - "create" + - "update" + - "patch" + - "watch" + - "list" + - "delete" + - apiGroups: + - "" + resources: + - "events" + verbs: + - "watch" + - apiGroups: + - "" + resources: + - "services" + verbs: + - "create" + - "get" + - "watch" + - "list" + - "delete" + - apiGroups: + - "batch" + resources: + - "jobs" + verbs: + - "create" + - "update" + - "patch" + - "get" + - "watch" + - "list" + - "delete" + - apiGroups: + - "metrics.k8s.io" + resources: + - "pods" + verbs: + - "get" +--- +# Source: rstudio-launcher-rbac/templates/rbac.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: rstudio-launcher-rbac +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: rstudio-launcher-rbac +subjects: + - kind: ServiceAccount + name: rstudio-launcher-rbac From 942eff3ad251c135766212dd5ceae01e87e8aa38 Mon Sep 17 00:00:00 2001 From: Trevor Nederlof Date: Wed, 25 Oct 2023 09:49:33 -0400 Subject: [PATCH 10/10] Add final newline --- charts/rstudio-library/templates/_license-mount.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/rstudio-library/templates/_license-mount.tpl b/charts/rstudio-library/templates/_license-mount.tpl index ec6f2b27..ddd23cc0 100644 --- a/charts/rstudio-library/templates/_license-mount.tpl +++ b/charts/rstudio-library/templates/_license-mount.tpl @@ -13,4 +13,4 @@ mountPath: {{ .license.file.mountPath | quote }} {{- end }} {{- end }} -{{- end -}}{{- /* end define template */ -}} \ No newline at end of file +{{- end -}}{{- /* end define template */ -}}