Created
January 29, 2025 12:55
-
-
Save glendmaatita/d3cf64b65fb94da4c89d625ccf5198e5 to your computer and use it in GitHub Desktop.
Harbor Helm Values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
expose: | |
type: clusterIP | |
tls: | |
auto: | |
commonName: "tls-harbor-secret" | |
externalURL: https://registry.example.com | |
persistence: | |
enabled: true | |
resourcePolicy: "keep" | |
persistentVolumeClaim: | |
registry: | |
existingClaim: "harbor-registry-pvc" | |
trivy: | |
existingClaim: "harbor-trivy-pvc" | |
storageClass: "" | |
subPath: "" | |
accessMode: ReadWriteOnce | |
size: 5Gi | |
annotations: {} | |
imageChartStorage: | |
type: filesystem | |
harborAdminPassword: "xxx" | |
cache: | |
enabled: true | |
expireHours: 24 | |
registry: | |
credentials: | |
username: "dalang" | |
password: "xxx" | |
trivy: | |
enabled: true | |
gitHubToken: "xxx" | |
database: | |
type: external | |
external: | |
host: "postgresql.database" | |
port: "5432" | |
username: "admin" | |
password: "xxx" | |
coreDatabase: "harbor" | |
redis: | |
type: external | |
external: | |
addr: "redis-master:6379" | |
password: "xxx" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment