Skip to content

Commit

Permalink
fix: added proxmox exporter container
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywhitaker3 committed Mar 4, 2024
1 parent d60b1a7 commit 7b0df0c
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 0 deletions.
6 changes: 6 additions & 0 deletions argo/cluster/monitoring/proxmox-exporter/chart/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: generic
repository: oci://ghcr.io/henrywhitaker3
version: v1.3.4
digest: sha256:52d4e590a69b90d3428c02ecbc01bc0eaecdbaa840769ef4bbf2e7f0671bd3d7
generated: "2024-02-29T21:03:26.799472399Z"
29 changes: 29 additions & 0 deletions argo/cluster/monitoring/proxmox-exporter/chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
apiVersion: v2
name: proxmox-exporter
description: proxmox-exporter manifests

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"

dependencies:
- name: generic
version: "v1.3.4"
repository: oci://ghcr.io/henrywhitaker3
16 changes: 16 additions & 0 deletions argo/cluster/monitoring/proxmox-exporter/chart/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
generic:
nameOverride: proxmox-exporter
fullnameOverride: proxmox-exporter

replicaCount: 1

image:
repository: prompve/prometheus-pve-exporter
pullPolicy: Always
tag: latest

service:
port: 9221

probes:
enabled: false
22 changes: 22 additions & 0 deletions argo/cluster/monitoring/proxmox-exporter/proxmox-exporter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: proxmox-exporter
namespace: argo
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
namespace: monitoring
server: https://kubernetes.default.svc
project: apps
source:
path: argo/cluster/monitoring/speedtest/chart
repoURL: https://gitlab.com/henrywhitaker3/homelab.git
targetRevision: HEAD
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true

0 comments on commit 7b0df0c

Please sign in to comment.