Last active
August 13, 2024 19:55
-
-
Save rafaeltuelho/59ee583dbd59cce86801360be528f43f to your computer and use it in GitHub Desktop.
Deploys an JFrog Artifactory instance using the JFrog Operator for Openshift 4.x
This file contains 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
apiVersion: charts.helm.k8s.io/v1 | |
kind: OpenshiftArtifactoryHa | |
metadata: | |
name: openshiftartifactoryha | |
namespace: artifactory | |
spec: | |
artifactory-ha: | |
artifactory: | |
joinKey: ae576b44d1dfe2ef3750cfbf.... #openssl rand -hex 32 | |
masterKey: 4c2bd4d2082a0c2fa2e54... #openssl rand -hex 32 | |
# license: | |
# licenseKey: cHJvZHVjdHM6.... # in case you have a (trial) license | |
node: | |
replicaCount: 2 | |
waitForPrimaryStartup: | |
enabled: false | |
database: | |
driver: org.postgresql.Driver | |
password: artifactory | |
type: postgresql | |
url: 'jdbc:postgresql://postgres-postgresql:5432/artifactory' | |
user: artifactory | |
databaseUpgradeReady: true | |
nginx: | |
enabled: false | |
postgresql: | |
enabled: false #you need to deploy a postgres instance before (rg. using bitname helm chart) | |
# postgresqlUsername: artifactory | |
# postgresqlPassword: "artifactory" | |
# postgresqlDatabase: artifactory | |
# persistence: | |
# enabled: true | |
# size: 5Gi | |
waitForDatabase: true | |
ingress: | |
annotations: | |
kubernetes.io/ingress.class: openshift-default | |
kubernetes.io/tls-acme: 'true' | |
# nginx.ingress.kubernetes.io/configuration-snippet: | | |
# proxy_pass_header Server; | |
# proxy_set_header X-JFrog-Override-Base-Url https://artifactory.apps.cluster.com; | |
# nginx.ingress.kubernetes.io/proxy-body-size: '0' | |
route.openshift.io/termination: edge | |
artifactoryPath: /artifactory/ | |
className: openshift-default | |
defaultBackend: | |
enabled: true | |
enabled: true | |
hosts: | |
- artifactory.apps.cluster.com | |
routerPath: / | |
rtfsPath: /artifactory/service/rtfs/ | |
nginx: | |
enabled: false | |
https: | |
enabled: false | |
logs: | |
level: info | |
stderr: true | |
stdout: true | |
service: | |
ssloffload: true | |
postgresql: | |
enabled: false | |
waitForDatabase: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To deploy a Postgres instance for Artifactory use this Gist here: https://gist.github.com/rafaeltuelho/24f3a2a50e89c2e7e22396385edad31d