-
Notifications
You must be signed in to change notification settings - Fork 16.8k
Moved Artifactory to stable and updated version to 5.3.2 #1314
Changes from 2 commits
266a42b
dc1f0cd
f22f5cd
73d4a02
54834d8
5b9e47b
c7fd27c
7312c59
acdffb2
ddbd6a8
34ce7ff
c02d548
9e2c8a1
fb226db
7e68a82
3e89133
dc99e38
d6aeb9d
577b918
bac7bcb
a0571f1
7f3f936
f5e02b2
4a788bd
e55e040
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apiVersion: v1 | ||
name: artifactory | ||
home: https://www.jfrog.com/artifactory/ | ||
version: 5.3.2 | ||
appVersion: 5.3.2 | ||
version: 5.4.1 | ||
appVersion: 5.4.1 | ||
description: Universal Repository Manager supporting all major packaging formats, build tools and CI servers. | ||
keywords: | ||
- artifactory | ||
|
@@ -13,4 +13,6 @@ sources: | |
maintainers: | ||
- name: Jainish shah | ||
email: jainishs@jfrog.com | ||
- name: Eldad Assis | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use the Github username as name. We've started to recommend that because it helps identify the chart maintainer for future review. |
||
email: eldada@jfrog.com | ||
icon: https://raw.githubusercontent.com/JFrogDev/artifactory-dcos/master/images/jfrog_med.png |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ The following tables lists the configurable parameters of the artifactory chart | |
| `artName` | Artifactory name | `artifactory` | | ||
| `artName.art_replicaCount` | Artifactory replica count | `1` | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| `artImage.repository` | Container image | `docker.bintray.io/jfrog/artifactory-pro` | | ||
| `artImage.version` | Container image tag | `5.3.2` | | ||
| `artImage.version` | Container image tag | `5.4.1` | | ||
| `artService.name` | Artifactory service name | `artifactory` | | ||
| `artService.type`| Artifactory service type | `ClusterIP` | | ||
| `artService.externalPort` | Artifactory service external port | `8081` | | ||
|
@@ -94,7 +94,7 @@ The following tables lists the configurable parameters of the artifactory chart | |
| `nxName` | Nginx name | `nginx` | | ||
| `nxName.artReplicaCount` | Nginx replica count | `1` | | ||
| `nxImage.repository` | Container image | `docker.bintray.io/jfrog/nginx-artifactory-pro` | | ||
| `nxImage.version` | Container image tag | `5.3.2` | | ||
| `nxImage.version` | Container image tag | `5.4.1` | | ||
| `nxService.name` | Nginx service name | `nginx` | | ||
| `nxService.type`| Nginx service type | `LoadBalancer` | | ||
| `nxService.externalPortHttp` | Nginx service external port | `80` | | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
kind: PersistentVolumeClaim | ||
apiVersion: v1 | ||
metadata: | ||
name: {{ .Values.artName }} | ||
name: {{ template "name" . }} | ||
labels: | ||
app: {{ template "fullname" . }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
kind: PersistentVolumeClaim | ||
apiVersion: v1 | ||
metadata: | ||
name: {{ .Values.nxName }} | ||
name: {{ template "nginxName" . }} | ||
labels: | ||
app: {{ template "fullname" . }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. app: {{ template "name" . }} |
||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
kind: PersistentVolumeClaim | ||
apiVersion: v1 | ||
metadata: | ||
name: {{ .Values.dbName }} | ||
name: {{ template "databaseName" . }} | ||
labels: | ||
app: {{ template "fullname" . }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Chart version and app version are two different things. They don't have to be aligned.