Artifact Hub

Definition

Artifact Hub is an open-source web application that enables users to find, install, and publish packages and configurations for cloud-native applications. It serves as a centralized repository for discovering Helm charts, Falco rules, OPA policies, and other Kubernetes-related artifacts. By providing a unified interface, Artifact Hub facilitates the sharing and management of resources across different cloud-native ecosystems.

Secure Settings Example

# Example of a secure Helm chart repository configuration
repositories:
  - name: stable
    url: https://charts.helm.sh/stable
    caFile: /path/to/ca.crt
    certFile: /path/to/cert.crt
    keyFile: /path/to/key.key
    verify: true

Insecure Settings Example

# Example of an insecure Helm chart repository configuration
repositories:
  - name: stable
    url: http://charts.helm.sh/stable
    verify: false