Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Update chart resources apiVersion (#644)
Browse files Browse the repository at this point in the history
* Update chart resources apiVersion

Signed-off-by: Dean Coakley <dean.s.coakley@gmail.com>

* Make required changes for apiVersion update

Signed-off-by: Dean Coakley <dean.s.coakley@gmail.com>

* Update mongodb chart dep. Necessary for k8 v1.16

Signed-off-by: Dean Coakley <dean.s.coakley@gmail.com>

* Bump patch version of Chart

Signed-off-by: Dean Coakley <dean.s.coakley@gmail.com>
  • Loading branch information
Dean-Coakley authored and Adnan Abdulhussein committed Oct 7, 2019
1 parent d9daeba commit 26dc59e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion chart/monocular/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: monocular
description: Monocular is a search and discovery front end for Helm Charts Repositories.
version: 1.4.11
version: 1.4.12
appVersion: v1.8.3
home: https://github.com/helm/monocular
sources:
Expand Down
6 changes: 3 additions & 3 deletions chart/monocular/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: mongodb
repository: https://kubernetes-charts.storage.googleapis.com
version: 4.6.2
digest: sha256:ccc841efc96895bd5982021aa2fd5300b99acdcddc1bc144f020572f27990c34
generated: 2018-10-25T22:57:16.837922292-04:00
version: 7.2.10
digest: sha256:314dea8ef057af9180610aeec4be4491ab6e8779be41076411a93360e92a3f40
generated: "2019-09-28T21:49:40.948575+01:00"
2 changes: 1 addition & 1 deletion chart/monocular/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies:
- name: mongodb
version: 4.6.2
version: 7.2.10
repository: https://kubernetes-charts.storage.googleapis.com
condition: mongodb.enabled
2 changes: 1 addition & 1 deletion chart/monocular/templates/chartsvc-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "fullname" . }}-chartsvc
Expand Down
5 changes: 4 additions & 1 deletion chart/monocular/templates/prerender-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "fullname" . }}-prerender
labels:
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
spec:
replicas: {{ .Values.prerender.replicaCount }}
selector:
matchLabels:
app: {{ template "fullname" . }}-prerender
template:
metadata:
labels:
Expand Down
5 changes: 4 additions & 1 deletion chart/monocular/templates/ui-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "fullname" . }}-ui
labels:
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
spec:
replicas: {{ .Values.ui.replicaCount }}
selector:
matchLabels:
app: {{ template "fullname" . }}-ui
template:
metadata:
labels:
Expand Down

0 comments on commit 26dc59e

Please sign in to comment.