Skip to content

Commit a47c176

Browse files
committed
fix chart lint
1 parent fe0db78 commit a47c176

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ jobs:
2626
- name: Run chart-testing (list-changed)
2727
id: list-changed
2828
run: |
29-
changed=$(ct list-changed)
29+
changed=$(ct list-changed --chart-dirs chart)
3030
if [[ -n "$changed" ]]; then
3131
echo "::set-output name=changed::true"
3232
fi
3333
3434
- name: Run chart-testing (lint)
35-
run: ct lint
35+
run: ct lint --chart-dirs chart
3636

3737
- name: Create kind cluster
3838
uses: helm/kind-action@v1.2.0
3939
if: steps.list-changed.outputs.changed == 'true'
4040

4141
- name: Run chart-testing (install)
42-
run: ct install
42+
run: ct install --chart-dirs chart

.github/workflows/release-chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
git config user.name "$GITHUB_ACTOR"
2121
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
2222
- name: Run chart-releaser
23-
uses: helm/chart-releaser-action@v1.2.1
23+
uses: helm/chart-releaser-action@v1.3.0
2424
with:
2525
charts_dir: ./chart
2626
env:

chart/k8sdb-controller/Chart.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ apiVersion: v2
22
appVersion: v0.1.0
33
description: A kubernetes controller to deploy databases
44
home: https://github.com/DoodleScheduling/k8sdb-controller
5+
maintainers:
6+
- name: devops
7+
email: devops@doodle.com
58
keywords:
69
- kubernetes-controller
710
- mongodb

chart/k8sdb-controller/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ secretMounts: []
3030
# secretName: secret
3131
# path: /secrets
3232

33-
#Add additional containers (sidecars)
33+
# Add additional containers (sidecars)
3434
extraContainers:
3535

3636
podAnnotations: {}
@@ -100,11 +100,11 @@ clusterRBAC:
100100
# Creates a PodSecurityPolicy and the role/rolebinding
101101
# allowing the serviceaccount to use it
102102
podSecurityPolicy:
103-
enabled: true
103+
enabled: false
104104

105105
# Prometheus operator PodMonitor
106106
podMonitor:
107-
enabled: true
107+
enabled: false
108108
interval: 30s
109109
scrapeTimeout: 10s
110110
namespace:

0 commit comments

Comments
 (0)