File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1+ workflow "Validate manifests" {
2+ on = " push"
3+ resolves = [" helm-lint" ]
4+ }
5+
6+ action "yaml-lint" {
7+ uses = " stefanprodan/gh-actions/yamllint@master"
8+ args = [" -d '{extends: relaxed, rules: {line-length: {max: 120}}}' -f parsable ./releases/*" ]
9+ }
10+
11+ action "kube-lint" {
12+ needs = [" yaml-lint" ]
13+ uses = " stefanprodan/gh-actions/kubeval@master"
14+ args = " workloads/*"
15+ }
16+
17+ action "helm-lint" {
18+ needs = [" kube-lint" ]
19+ uses = " stefanprodan/gh-actions/helm@master"
20+ args = [" lint charts/*" ]
21+ }
Original file line number Diff line number Diff line change 2323 securityContext :
2424 enabled : true
2525 fsGroup : 0
26- runAsUser : 0
26+ runAsUser : 0
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ metadata:
77 name : redis-auth
88 namespace : demo
99data :
10- values.yaml : cGFzc3dvcmQ6IGFkbWlu
10+ values.yaml : cGFzc3dvcmQ6IGFkbWlu
You can’t perform that action at this time.
0 commit comments