Skip to content

Commit

Permalink
Update Chart values
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Jogeleit <[email protected]>
  • Loading branch information
fjogeleit committed Oct 7, 2024
1 parent 44316bd commit c47a2a5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

- name: Push image
- name: Parse Version
id: params
run: |
# Strip git ref prefix from version
VERSION=$(git rev-parse --short "$GITHUB_SHA")
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
echo VERSION=$VERSION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /api/v1/policies
path: /v1/policies
port: http
readinessProbe:
httpGet:
path: /api/v1/policies
path: /v1/policies
port: http
resources:
{{- toYaml .Values.plugin.kyverno.resources | nindent 12 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /api/vulnr/v1/policies
path: /vulnr/v1/policies
port: http
readinessProbe:
httpGet:
path: /api/vulnr/v1/policies
path: /vulnr/v1/policies
port: http
resources:
{{- toYaml .Values.plugin.trivy.resources | nindent 12 }}
Expand Down
10 changes: 5 additions & 5 deletions charts/policy-reporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ image:
# -- (string) Image pullPolicy
pullPolicy: IfNotPresent
# -- (string) Image tag
tag: 12da466
tag: 3.0.0-rc.1

# -- Image pullSecrets
imagePullSecrets: []
Expand Down Expand Up @@ -86,11 +86,11 @@ securityContext:
seccompProfile:
type: RuntimeDefault

# -- Additional annotations to add to each pod
podAnnotations: {}
# -- Additional annotations to add to each pod
podAnnotations: {}

# -- Additional labels to add to each pod
podLabels: {}
# -- Additional labels to add to each pod
podLabels: {}

# -- Resource constraints
resources: {}
Expand Down

0 comments on commit c47a2a5

Please sign in to comment.