mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2025-09-10 14:12:09 +00:00
REPO-3304: update docker images and rename community
This commit is contained in:
11
.gitignore
vendored
11
.gitignore
vendored
@@ -18,20 +18,17 @@ target
|
|||||||
*.log
|
*.log
|
||||||
*.log.*
|
*.log.*
|
||||||
|
|
||||||
# Mobile Tools for Java (J2ME)
|
|
||||||
|
|
||||||
.mtj
|
|
||||||
.tmp/
|
|
||||||
|
|
||||||
# Package Files #
|
# Package Files #
|
||||||
|
|
||||||
*.jar
|
*.jar
|
||||||
*.war
|
*.war
|
||||||
*.ear
|
*.ear
|
||||||
|
|
||||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
|
||||||
hs_err_pid*
|
hs_err_pid*
|
||||||
|
|
||||||
# Alfresco
|
# Alfresco
|
||||||
alf_data/
|
alf_data/
|
||||||
|
|
||||||
|
helm/alfresco-content-services/charts/*
|
||||||
|
helm/alfresco-content-services/requirements.lock
|
@@ -1,13 +1,13 @@
|
|||||||
name: alfresco-content-services
|
name: alfresco-content-services-community
|
||||||
version: 0.0.1
|
version: 0.0.1
|
||||||
description: A Helm chart for deploying Alfresco Content Services
|
description: A Helm chart for deploying Alfresco Content Services Community
|
||||||
keywords:
|
keywords:
|
||||||
- content
|
|
||||||
- content services
|
|
||||||
- alfresco
|
- alfresco
|
||||||
- community
|
- community
|
||||||
- alfresco community
|
- alfresco community
|
||||||
|
- content
|
||||||
|
- content services
|
||||||
home: https://www.alfresco.com
|
home: https://www.alfresco.com
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/Alfresco/acs-community-full-packaging/tree/master/helm
|
- https://github.com/Alfresco/acs-community-packaging/tree/master/helm
|
||||||
icon: https://avatars0.githubusercontent.com/u/391127?s=200&v=4
|
icon: https://avatars0.githubusercontent.com/u/391127?s=200&v=4
|
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
{{ if .Values.dnsaddress }}
|
{{ if .Values.dnsaddress }}
|
||||||
|
|
||||||
You can access all components of Alfresco Content Services using the same root address, but different paths as follows:
|
You can access all components of Alfresco Content Services Community using the same root address, but different paths as follows:
|
||||||
|
|
||||||
Content: {{ .Values.dnsaddress }}/alfresco
|
Content: {{ .Values.dnsaddress }}/alfresco
|
||||||
Share: {{ .Values.dnsaddress }}/share
|
Share: {{ .Values.dnsaddress }}/share
|
||||||
|
@@ -32,6 +32,14 @@ spec:
|
|||||||
- name: data
|
- name: data
|
||||||
mountPath: {{ .Values.persistence.solr.data.mountPath }}
|
mountPath: {{ .Values.persistence.solr.data.mountPath }}
|
||||||
subPath: {{ .Values.persistence.solr.data.subPath }}
|
subPath: {{ .Values.persistence.solr.data.subPath }}
|
||||||
|
initContainers:
|
||||||
|
- name: init-db
|
||||||
|
image: busybox
|
||||||
|
command: ["sh", "-c", "chown -R 1000:1000 {{ .Values.persistence.solr.data.mountPath }}"]
|
||||||
|
volumeMounts:
|
||||||
|
- name: data
|
||||||
|
mountPath: {{ .Values.persistence.solr.data.mountPath }}
|
||||||
|
subPath: {{ .Values.persistence.solr.data.subPath }}
|
||||||
volumes:
|
volumes:
|
||||||
- name: data
|
- name: data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
@@ -7,8 +7,8 @@ registryPullSecrets: quay-registry-secret
|
|||||||
repository:
|
repository:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
image:
|
image:
|
||||||
repository: quay.io/alfresco/alfresco-content-services-community
|
repository: alfresco/alfresco-content-repository-community
|
||||||
tag: "latest"
|
tag: "6.0.4-ea"
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
internalPort: 8080
|
internalPort: 8080
|
||||||
service:
|
service:
|
||||||
@@ -30,8 +30,8 @@ repository:
|
|||||||
share:
|
share:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
image:
|
image:
|
||||||
repository: quay.io/alfresco/alfresco-share
|
repository: alfresco/alfresco-share
|
||||||
tag: "6.0"
|
tag: "6.0.a"
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
internalPort: 8080
|
internalPort: 8080
|
||||||
service:
|
service:
|
||||||
@@ -49,8 +49,8 @@ share:
|
|||||||
solr:
|
solr:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
image:
|
image:
|
||||||
repository: quay.io/alfresco/search-services
|
repository: alfresco/alfresco-search-services
|
||||||
tag: "1.2.0-SNAPSHOT"
|
tag: "1.1.0"
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
internalPort: 8983
|
internalPort: 8983
|
||||||
service:
|
service:
|
||||||
|
Reference in New Issue
Block a user