Changed default image to Artifactory-oss image

This commit is contained in:
jainish shah
2016-12-04 09:45:01 +02:00
parent c80ec979d3
commit 98e31cb3b2
3 changed files with 11 additions and 3 deletions
+7 -1
View File
@@ -12,6 +12,7 @@
## Chart Details
This chart will do the following:
* Deploy Artifactory-oss
* Deploy Artifactory-Pro
## Installing the Chart
@@ -22,6 +23,11 @@ To install the chart with the release name `my-release`:
$ helm install --name my-release incubator/artifactory
```
Note: By default it will run Artifactory-oss to run Artifactory-Pro uncomment image in value.yaml or use following command
```bash
$ helm install --name my-release --set image=docker.bintray.io/jfrog/artifactory-pro incubator/artifactory
```
## Deleting the Charts
Deletion of the PetSet doesn't cascade to deleting associated Pods and PVCs. To delete them:
@@ -36,7 +42,7 @@ The following tables lists the configurable parameters of the artifactory chart
| Parameter | Description | Default |
|---------------------------|-----------------------------------|----------------------------------------------------------|
| `Image` | Container image name | `docker.bintray.io/jfrog/artifactory-pro` |
| `Image` | Container image name | `docker.bintray.io/jfrog/artifactory-oss` |
| `ImageTag` | Container image tag | `4.14.1` |
| `ImagePullPolicy` | Container pull policy | `Always` |
@@ -29,7 +29,7 @@ spec:
# is a nice option for the user. Especially in the strange cases like
# artifactory where the base distro is determined by the tag. Using :latest
# is frowned upon, using :stable isn't that great either.
image: "{{default "docker.bintray.io/jfrog/artifactory-pro" .Values.image}}:{{default "4.14.1" .Values.imageTag}}"
image: "{{default "docker.bintray.io/jfrog/artifactory-oss" .Values.image}}:{{default "4.14.1" .Values.imageTag}}"
imagePullPolicy: {{default "IfNotPresent" .Values.ImagePullPolicy}}
resources:
{{ toYaml .Values.resources | indent 10 }}
+3 -1
View File
@@ -5,7 +5,9 @@
Name: artifactory
Component: "Artifactory"
image: "docker.bintray.io/jfrog/artifactory-pro"
## Uncomment following line if you want to run Artifactory-Pro
#image: "docker.bintray.io/jfrog/artifactory-pro"
imageTag: "4.14.1"
imagePullPolicy: "Always"
replicaCount: 1