Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add PerfectScale to Gitops Catalog #163

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ apps:
description: "Polaris is an open source policy engine for Kubernetes."
category: Security

- name: perfectscale
displayName: PerfectScale
website: "https://www.perfectscale.io/"
imageUrl: "https://raw.githubusercontent.com/kubefirst/gitops-catalog/main/logos/perfectscale.svg"
description: "Effortlessly right-size and right-scale your Kubernetes environment"
category: Architecture

- name: stormforge-agent
displayName: Stormforge Agent
website: "https://stormforge.io"
Expand Down
1 change: 1 addition & 0 deletions logos/perfectscale.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions perfectscale/components/application.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: <CLUSTER_NAME>-perfectscale
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
namespace: perfectscale
name: <CLUSTER_DESTINATION>
project: <PROJECT>
source:
chart: exporter
repoURL: https://perfectscale-io.github.io
targetRevision: v1.0.39
helm:
releaseName: perfectscale
values: |
secret:
create: false
name: "perfectscale-secret"
settings:
clusterName: <CLUSTER_NAME>
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
16 changes: 16 additions & 0 deletions perfectscale/components/external-secret.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: <CLUSTER_NAME>-perfectscale-secret
namespace: perfectscale
spec:
target:
name: perfectscale-secret
secretStoreRef:
kind: ClusterSecretStore
name: vault-kv-secret
refreshInterval: "10s"
dataFrom:
- extract:
key: /perfectscale
Comment on lines +2 to +16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I imagine this is going to be an achilles heel... Is this from their tokens or something along those lines?

25 changes: 25 additions & 0 deletions perfectscale/perfectscale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: <CLUSTER_NAME>-perfectscale-components
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: '100'
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: <GITOPS_REPO_URL>
path: <REGISTRY_PATH>/components/perfectscale
targetRevision: HEAD
destination:
name: in-cluster
namespace: perfectscale
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
Loading