File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,17 @@ jobs:
26
26
- name : Run chart-testing (list-changed)
27
27
id : list-changed
28
28
run : |
29
- changed=$(ct list-changed)
29
+ changed=$(ct list-changed --chart-dirs chart )
30
30
if [[ -n "$changed" ]]; then
31
31
echo "::set-output name=changed::true"
32
32
fi
33
33
34
34
- name : Run chart-testing (lint)
35
- run : ct lint
35
+ run : ct lint --chart-dirs chart
36
36
37
37
- name : Create kind cluster
38
38
uses : helm/kind-action@v1.2.0
39
39
if : steps.list-changed.outputs.changed == 'true'
40
40
41
41
- name : Run chart-testing (install)
42
- run : ct install
42
+ run : ct install --chart-dirs chart
Original file line number Diff line number Diff line change 20
20
git config user.name "$GITHUB_ACTOR"
21
21
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
22
22
- name : Run chart-releaser
23
- uses : helm/chart-releaser-action@v1.2.1
23
+ uses : helm/chart-releaser-action@v1.3.0
24
24
with :
25
25
charts_dir : ./chart
26
26
env :
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ apiVersion: v2
2
2
appVersion : v0.1.0
3
3
description : A kubernetes controller to deploy databases
4
4
home : https://github.com/DoodleScheduling/k8sdb-controller
5
+ maintainers :
6
+ - name : devops
7
+ email : devops@doodle.com
5
8
keywords :
6
9
- kubernetes-controller
7
10
- mongodb
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ secretMounts: []
30
30
# secretName: secret
31
31
# path: /secrets
32
32
33
- # Add additional containers (sidecars)
33
+ # Add additional containers (sidecars)
34
34
extraContainers :
35
35
36
36
podAnnotations : {}
@@ -100,11 +100,11 @@ clusterRBAC:
100
100
# Creates a PodSecurityPolicy and the role/rolebinding
101
101
# allowing the serviceaccount to use it
102
102
podSecurityPolicy :
103
- enabled : true
103
+ enabled : false
104
104
105
105
# Prometheus operator PodMonitor
106
106
podMonitor :
107
- enabled : true
107
+ enabled : false
108
108
interval : 30s
109
109
scrapeTimeout : 10s
110
110
namespace :
You can’t perform that action at this time.
0 commit comments