Skip to content

Commit

Permalink
Merge branch 'main' into migrate-aws-sdk-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
KongZ committed Jan 2, 2024
2 parents ee0ce6b + c8dee88 commit e70d527
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
4 changes: 2 additions & 2 deletions charts/piggy-webhooks/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: piggy-webhooks
description: Deploys a piggy-webhooks that inject enviroment variaiables from AWS Secret Manager
type: application
version: 0.4.2
appVersion: "0.4.2"
version: 0.5.2
appVersion: "0.5.1"
home: https://piggysec.com
icon: https://raw.githubusercontent.com/KongZ/piggy/main/docs/images/piggy.png
sources:
Expand Down
3 changes: 3 additions & 0 deletions charts/piggy-webhooks/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ spec:
{{- if .Values.volumeMounts }}
{{ toYaml .Values.volumeMounts | nindent 12 }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
31 changes: 18 additions & 13 deletions charts/piggy-webhooks/values.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Default values for piggy-webhooks.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
## Default values for piggy-webhooks.
## This is a YAML-formatted file.
## Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: ghcr.io/kongz/piggy-webhooks
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "0.4.0"
## Overrides the image tag whose default is the chart appVersion.
tag: "0.5.1"

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

# Pod port
## Pod port
port: 8443

serviceAccount:
# Specifies whether a service account should be created
## Specifies whether a service account should be created
create: true
# Annotations to add to the service account
## Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname template
name: ""

podAnnotations: {}
Expand Down Expand Up @@ -73,10 +73,15 @@ autoscaling:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

# Set number of pods from that can be unavailable after the eviction.
# It can be either an absolute number or a percentage.
## Set number of pods from that can be unavailable after the eviction.
## It can be either an absolute number or a percentage.
maxUnavailable: 1

## Specify the PriorityClass name for piggy.
## Default value is set to system-cluster-critical to ensure that piggy is always schedule first.
##
priorityClassName: system-cluster-critical

nodeSelector: {}

tolerations: []
Expand Down Expand Up @@ -134,6 +139,6 @@ mutate:
image:
repository: ghcr.io/kongz/piggy-env
pullPolicy: IfNotPresent
tag: "0.4.0"
tag: "0.5.0"

debug: false

0 comments on commit e70d527

Please sign in to comment.