Skip to content

Commit

Permalink
add-cloudformation-conf-to-chart (#116)
Browse files Browse the repository at this point in the history
* add-cloudformation-conf-to-chart
  • Loading branch information
yaelkinor2 authored Jan 15, 2025
1 parent 9a453e3 commit 0cf51ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/pleco/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ name: pleco
description: Automatically removes Cloud managed services and Kubernetes resources based on tags with TTL
type: application
home: https://github.com/Qovery/pleco
version: 0.20.6
appVersion: 0.20.6
version: 0.20.7
appVersion: 0.20.7
icon: https://github.com/Qovery/pleco/raw/main/assets/pleco_logo.png
5 changes: 4 additions & 1 deletion charts/pleco/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ spec:
{{ if or (eq .Values.awsFeatures.lambda true)}}
- --enable-lambda
{{ end }}
{{ if or (eq .Values.awsFeatures.cloudformation true)}}
- --enable-cloudformation
{{ end }}
{{ if or (eq .Values.awsFeatures.ec2 true)}}
- --enable-ec2-instance
{{ end }}
Expand Down Expand Up @@ -208,4 +211,4 @@ spec:
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
4 changes: 4 additions & 0 deletions charts/pleco/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ awsFeatures:
iam: false
sshKeys: false
ecr: false
sqs: false
sfn: false
lambda: false
cloudformation: false

scwFeatures:
scwZones: []
Expand Down

0 comments on commit 0cf51ba

Please sign in to comment.