From 4835ed0ef75d365751c3ab1d4a98eca4e45a0bb0 Mon Sep 17 00:00:00 2001 From: Scott Rigby Date: Tue, 10 Nov 2020 04:20:41 -0500 Subject: [PATCH] [incubator/puppet-forge] add repo archive notice (#24058) * [incubator/puppet-forge] add repo archive notice Signed-off-by: Scott Rigby * [incubator/puppet-forge] use apps/v1 and fix maintainer name Signed-off-by: Carlos Panato Co-authored-by: Carlos Panato --- incubator/puppet-forge/Chart.yaml | 4 ++-- incubator/puppet-forge/README.md | 6 +++++- incubator/puppet-forge/templates/deployment.yaml | 8 ++++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/incubator/puppet-forge/Chart.yaml b/incubator/puppet-forge/Chart.yaml index 7e0dc13b57..29d9449fa6 100644 --- a/incubator/puppet-forge/Chart.yaml +++ b/incubator/puppet-forge/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Distribute locally developed Puppet modules and proxy to the official Puppet Forge server name: puppet-forge -version: 0.1.8 +version: 0.1.9 appVersion: 1.10.0 home: https://github.com/unibet/puppet-forge-server keywords: @@ -9,5 +9,5 @@ keywords: - repository - forge maintainers: - - name: Gerard Hickey + - name: hickey email: hickey@kinetic-compute.com diff --git a/incubator/puppet-forge/README.md b/incubator/puppet-forge/README.md index 4d9b1fcc05..0ecce593f4 100644 --- a/incubator/puppet-forge/README.md +++ b/incubator/puppet-forge/README.md @@ -1,3 +1,8 @@ +# ⚠️ Repo Archive Notice + +As of Nov 13, 2020, charts in this repo will no longer be updated. +For more information, see the Helm Charts [Deprecation and Archive Notice](https://github.com/helm/charts#%EF%B8%8F-deprecation-and-archive-notice), and [Update](https://helm.sh/blog/charts-repo-deprecation/). + Helm Chart: puppet-forge ----------------------- Distribute locally developed Puppet modules and proxy to the official Puppet Forge server. @@ -50,4 +55,3 @@ value of the variable the list of directories with a colon (':') as the delimiter. This can be useful if one has multiple module repositories that allow module promotion. The server does not provide any access control for multiple repositories and needs to be controlled through the Puppetfile. - diff --git a/incubator/puppet-forge/templates/deployment.yaml b/incubator/puppet-forge/templates/deployment.yaml index f54e78e570..b73f0ef20c 100644 --- a/incubator/puppet-forge/templates/deployment.yaml +++ b/incubator/puppet-forge/templates/deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "fullname" . }} @@ -9,6 +9,10 @@ metadata: heritage: {{ .Release.Service }} spec: replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ template "name" . }} + release: {{ .Release.Name }} template: metadata: labels: @@ -18,7 +22,7 @@ spec: initContainers: - name: prep-volume image: busybox - command: + command: - chown - -R - 1000:1000