Skip to content

Commit

Permalink
Merge pull request jfrog#203 from jfrog/artifactory-derby-instructions
Browse files Browse the repository at this point in the history
Add instructions on how to deploy Artifactory with embedded Derby
  • Loading branch information
jainishshah17 authored Feb 6, 2019
2 parents 661451c + 7e724c0 commit 217bbf4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions stable/artifactory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# JFrog Artifactory Chart Changelog
All changes to this chart will be documented in this file.

## [7.9.3] - Feb 5, 2019
* Add instructions on how to deploy Artifactory with embedded Derby database

## [7.9.2] - Feb 5, 2019
* Add support for customizing statefulset `terminationGracePeriodSeconds`

Expand Down
2 changes: 1 addition & 1 deletion stable/artifactory/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: artifactory
home: https://www.jfrog.com/artifactory/
version: 7.9.2
version: 7.9.3
appVersion: 6.7.2
description: Universal Repository Manager supporting all major packaging formats,
build tools and CI servers.
Expand Down
11 changes: 10 additions & 1 deletion stable/artifactory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This chart will do the following:

* Deploy Artifactory-Pro/Artifactory-Edge (or OSS if set custom image)
* Deploy a PostgreSQL database using the jfrog/postgresql chart
* Deploy a PostgreSQL database using the stable/postgresql chart (can be changed)
* Deploy an optional Nginx server
* Optionally expose Artifactory with Ingress [Ingress documentation](https://kubernetes.io/docs/concepts/services-networking/ingress/)

Expand All @@ -33,6 +33,15 @@ By default it will run Artifactory-Pro to run Artifactory-Oss use following comm
helm install --name artifactory --set artifactory.image.repository=docker.bintray.io/jfrog/artifactory-oss jfrog/artifactory
```

### Deploying Artifactory with embedded Derby database
By default, this chart deploys Artifactory with PostgreSQL (running in a separate pod).
It's possible to deploy Artifactory without PostgreSQL (or any other external database), which will default to the embedded [Derby database](https://db.apache.org/derby/).
```bash
# Disable the default postgresql
helm install --name artifactory --set postgresql.enabled=false jfrog/artifactory
```
Artifactory will start with it's embedded Derby database.

### Deploying Artifactory with replicator
The [Artifactory replicator](https://www.jfrog.com/confluence/display/RTF/Replicator) is used with an [Enterprise Plus](https://www.jfrog.com/confluence/display/EP/Welcome+to+JFrog+Enterprise+Plus) license.
```bash
Expand Down

0 comments on commit 217bbf4

Please sign in to comment.