ArgoCD

Run Kubescape helm chart with ArgoCD

You can install the Kubescape helm chart using ArgoCD:

Here is how the YAML should look like:

Make sure to add a clusterName and account

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: kubescape
spec:
  destination:
    name: ''
    namespace: kubescape
    server: 'https://kubernetes.default.svc' # change to your server
  source:
    path: charts/kubescape-operator
    repoURL: 'https://github.com/kubescape/helm-charts'
    targetRevision: HEAD
    helm:
      valueFiles:
        - values.yaml
      parameters:
        - name: account
          value: '' # add account ID
        - name: clusterName
          value: '' # add cluster name
        - name: capabilities.relevancy
          value: 'enable' # disable/detect
  project: default
  syncPolicy:
    automated:
      prune: false
      selfHeal: false
    syncOptions:
      - CreateNamespace=true