Skip to content

Commit

Permalink
add extraObject support and regenerate curl (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-spray authored Sep 5, 2024
1 parent 97263b9 commit eb7de0a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/metrics-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 2.11.29
version: 2.11.30

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 2.11.29
appVersion: 2.11.30
4 changes: 4 additions & 0 deletions charts/metrics-agent/templates/extra-objects.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{ range .Values.extraObjects }}
---
{{ tpl (toYaml .) $ }}
{{ end }}
20 changes: 19 additions & 1 deletion charts/metrics-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pollInterval: 180

image:
name: cloudability/metrics-agent
tag: 2.11.29
tag: 2.11.30
pullPolicy: Always

imagePullSecrets: []
Expand Down Expand Up @@ -108,3 +108,21 @@ readOnlyRootFilesystem: false

drop:
- ALL

# Extra K8s manifests to deploy,
# NOTE: not all various extraObject deployment configurations are tested/supported. When adding extra resources
# to the metrics-agent deployment, Cloudability may not be able to assist in deployment troubleshooting
extraObjects: []
# Example extra manifest
# - apiVersion: external-secrets.io/v1beta1
# kind: SecretStore
# metadata:
# name: aws-store-xxxxx
# annotations:
# argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
# argocd.argoproj.io/sync-wave: "99"
# spec:
# provider:
# aws:
# service: SecretsManager
# region: us-west-2
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION is the current version of the agent
var VERSION = "2.11.29"
var VERSION = "2.11.30"

0 comments on commit eb7de0a

Please sign in to comment.