Skip to content

Commit 8ea52ba

Browse files
Release 7.20.0-rc.346
1 parent a9aeb56 commit 8ea52ba

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

helm/alfresco-process-infrastructure/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: alfresco-process-infrastructure
3-
version: 7.20.0-alpha.826
4-
appVersion: 7.20.0-SNAPSHOT
3+
version: 7.20.0-rc.346
4+
appVersion: 7.20.0-rc.346
55
kubeVersion: '>=1.15.0-0'
66
description: A Helm chart for Alfresco Activiti Enterprise infrastructure
77
keywords:

helm/alfresco-process-infrastructure/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# alfresco-process-infrastructure
22

3-
![Version: 7.20.0-alpha.826](https://img.shields.io/badge/Version-7.20.0--alpha.826-informational?style=flat-square) ![AppVersion: 7.20.0-SNAPSHOT](https://img.shields.io/badge/AppVersion-7.20.0--SNAPSHOT-informational?style=flat-square)
3+
![Version: 7.20.0-rc.346](https://img.shields.io/badge/Version-7.20.0--rc.346-informational?style=flat-square) ![AppVersion: 7.20.0-rc.346](https://img.shields.io/badge/AppVersion-7.20.0--rc.346-informational?style=flat-square)
44

55
A Helm chart for Alfresco Activiti Enterprise infrastructure
66

@@ -47,7 +47,7 @@ Kubernetes: `>=1.15.0-0`
4747
| alfresco-admin-app.extraEnv | string | `"- name: APP_ALLOW_CUSTOM_RESOURCES\n value: \"{{ .Values.applications.allowCustomResources }}\"\n{{- if .Values.global.acs.enabled }}\n- name: APP_CONFIG_ECM_HOST\n value: '{{ template \"alfresco-process-infrastructure.acs-url\" . }}'\n{{- else }}\n- name: APP_CONFIG_PROVIDER\n value: BPM\n{{- end }}"` | |
4848
| alfresco-admin-app.image.pullPolicy | string | `"Always"` | |
4949
| alfresco-admin-app.image.repository | string | `"quay.io/alfresco/alfresco-admin-app"` | |
50-
| alfresco-admin-app.image.tag | string | `"develop"` | |
50+
| alfresco-admin-app.image.tag | string | `"7.20.0-rc.346"` | |
5151
| alfresco-admin-app.ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-headers" | string | `"Authorization, Content-Type, Accept"` | |
5252
| alfresco-admin-app.ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
5353
| alfresco-admin-app.ingress.className | string | `"nginx"` | |
@@ -87,7 +87,7 @@ Kubernetes: `>=1.15.0-0`
8787
| alfresco-deployment-service.applications.datadog.metrics.enabled | bool | `true` | enables application Datadog metrics observability. |
8888
| alfresco-deployment-service.applications.image.pullPolicy | string | `"Always"` | default pull policy for all application images |
8989
| alfresco-deployment-service.applications.image.pullSecretName | string | `"quay-registry-secret"` | pull secret name for all application images |
90-
| alfresco-deployment-service.applications.image.tag | string | `"develop"` | default tag for all application images |
90+
| alfresco-deployment-service.applications.image.tag | string | `"7.20.0-rc.346"` | default tag for all application images |
9191
| alfresco-deployment-service.applications.maxNumber | int | 20 applications can be deployed by default | maximum number of application can be deployed |
9292
| alfresco-deployment-service.applications.podDisruptionBudget.enabled | bool | `true` | set to true to enable PodDisruptionBudget for all applications |
9393
| alfresco-deployment-service.applications.podDisruptionBudget.minAvailable | int | `1` | default min replicas to keep for all applications |
@@ -110,7 +110,7 @@ Kubernetes: `>=1.15.0-0`
110110
| alfresco-deployment-service.extraVolumes | string | `"- name: config\n configMap:\n name: {{ .Release.Name }}-deployment-config\n defaultMode: 0744"` | |
111111
| alfresco-deployment-service.image.pullPolicy | string | `"Always"` | |
112112
| alfresco-deployment-service.image.repository | string | `"quay.io/alfresco/alfresco-deployment-service"` | |
113-
| alfresco-deployment-service.image.tag | string | `"7.20.0-alpha.493"` | |
113+
| alfresco-deployment-service.image.tag | string | `"7.20.0-rc.346"` | |
114114
| alfresco-deployment-service.ingress.className | string | `"nginx"` | |
115115
| alfresco-deployment-service.ingress.enabled | bool | `true` | |
116116
| alfresco-deployment-service.ingress.path | string | `"/deployment-service"` | |
@@ -146,7 +146,7 @@ Kubernetes: `>=1.15.0-0`
146146
| alfresco-identity-adapter-service.extraEnv | string | `"- name: SERVER_PORT\n value: \"8080\"\n- name: SERVER_USEFORWARDHEADERS\n value: \"true\"\n- name: SERVER_TOMCAT_INTERNALPROXIES\n value: \".*\"\n- name: MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE\n value: \"*\"\n{{- with .Values.activiti.keycloak.clientId }}\n- name: ACTIVITI_KEYCLOAK_CLIENT_ID\n value: \"{{ tpl . $ }}\"\n{{- end }}\n{{- with .Values.activiti.keycloak.clientSecret }}\n- name: ACTIVITI_KEYCLOAK_CLIENT_SECRET\n value: \"{{ tpl . $ }}\"\n{{- end }}\n{{- if .Values.global.datadog.enabled }}\n{{- with .Values.global.datadog.agent.traceAgentUrl }}\n- name: DD_TRACE_AGENT_URL\n value: {{ . }}\n{{- end }}\n{{- if not .Values.global.datadog.agent.admission }}\n- name: DATADOG_JAVA_AGENT\n value: \"{{ .Values.global.datadog.enabled }}\"\n- name: DD_SERVICE\n value: \"{{ .Chart.Name }}\"\n- name: DD_ENV\n value: {{ .Values.global.datadog.env | required \"global.datadog.env is required.\" | quote }}\n- name: DD_VERSION\n value: \"{{ .Values.image.tag }}\"\n{{- end }}\n- name: DD_LOGS_INJECTION\n value: \"{{ .Values.global.datadog.agent.logsInjection }}\"\n- name: DD_PROFILING_ENABLED\n value: \"{{ .Values.global.datadog.agent.profiling }}\"\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_ENABLED\n value: \"{{ .Values.global.datadog.metrics.enabled }}\"\n{{- if .Values.global.datadog.metrics.enabled }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_API_KEY\n value: {{ .Values.global.datadog.metrics.apiKey | required \"global.datadog.metrics.apiKey is required.\" | quote }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_DESCRIPTIONS\n value: {{ .Values.global.datadog.metrics.descriptions | required \"global.datadog.metrics.descriptions is required.\" | quote }}\n{{- with .Values.global.datadog.metrics.applicationKey }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_APPLICATION_KEY\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.uri }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_URI\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.hostTag }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_HOST_TAG\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.step }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_STEP\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.connectTimeout }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_CONNECT_TIMEOUT\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.readTimeout }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_READ_TIMEOUT\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.batchSize }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_BATCH_SIZE\n value: {{ . | quote }}\n{{- end }}\n{{- end }}\n{{- end }}"` | |
147147
| alfresco-identity-adapter-service.image.pullPolicy | string | `"Always"` | |
148148
| alfresco-identity-adapter-service.image.repository | string | `"quay.io/alfresco/alfresco-identity-adapter-service"` | |
149-
| alfresco-identity-adapter-service.image.tag | string | `"7.20.0-alpha.213"` | |
149+
| alfresco-identity-adapter-service.image.tag | string | `"7.20.0-rc.346"` | |
150150
| alfresco-identity-adapter-service.ingress.annotations."nginx.ingress.kubernetes.io/rewrite-target" | string | `"/$1"` | |
151151
| alfresco-identity-adapter-service.ingress.className | string | `"nginx"` | |
152152
| alfresco-identity-adapter-service.ingress.enabled | bool | `true` | |
@@ -447,7 +447,7 @@ Kubernetes: `>=1.15.0-0`
447447
| alfresco-modeling-app.exampleProjects.disabled | bool | `false` | |
448448
| alfresco-modeling-app.image.pullPolicy | string | `"Always"` | |
449449
| alfresco-modeling-app.image.repository | string | `"quay.io/alfresco/alfresco-modeling-app"` | |
450-
| alfresco-modeling-app.image.tag | string | `"develop"` | |
450+
| alfresco-modeling-app.image.tag | string | `"7.20.0-rc.346"` | |
451451
| alfresco-modeling-app.ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-headers" | string | `"Authorization, Content-Type, Accept"` | |
452452
| alfresco-modeling-app.ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
453453
| alfresco-modeling-app.ingress.className | string | `"nginx"` | |
@@ -480,7 +480,7 @@ Kubernetes: `>=1.15.0-0`
480480
| alfresco-modeling-service.extraEnv | string | `"- name: SERVER_PORT\n value: \"8080\"\n- name: SERVER_USEFORWARDHEADERS\n value: \"true\"\n- name: SERVER_TOMCAT_INTERNALPROXIES\n value: \".*\"\n- name: MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE\n value: \"*\"\n- name: CONTENT_CLIENT_ID\n value: \"{{ .Values.content.client.id }}\"\n- name: CONTENT_CLIENT_SECRET\n value: \"{{ .Values.content.client.secret }}\"\n- name: CONTENT_SERVICE_URL\n{{- if .Values.global.hxpr.enabled}}\n value: \"{{ .Values.global.hxpr.url }}\"\n{{- else }}\n value: '{{ template \"alfresco-process-infrastructure.acs-url\" . }}'\n{{- end }}\n- name: CONTENT_SERVICE_PATH\n value: \"{{ .Values.content.service.path }}\"\n- name: CONTENT_SERVICE_ENABLED\n value: \"{{ or .Values.global.acs.enabled .Values.global.hxpr.enabled }}\"\n{{- if .Values.global.hxpr.enabled}}\n- name: CONTENT_REPOSITORY_TYPE\n value: \"hxp\"\n- name: HXPIDP_ACCOUNTID\n value: \"{{ .Values.global.hxp.accountId }}\"\n{{- end }}\n{{- with .Values.activiti.keycloak.clientId }}\n- name: ACTIVITI_KEYCLOAK_CLIENT_ID\n value: \"{{ tpl . $ }}\"\n{{- end }}\n{{- with .Values.activiti.keycloak.clientSecret }}\n- name: ACTIVITI_KEYCLOAK_CLIENT_SECRET\n value: \"{{ tpl . $ }}\"\n{{- end }}\n- name: ACT_ALFRESCO_MODELING_TEMPLATES_ENDPOINT\n value: \"{{ .Values.exampleProjects.endpoint }}\"\n- name: ACT_ALFRESCO_MODELING_TEMPLATES_RESOURCE\n value: \"{{ .Values.exampleProjects.resource }}\"\n{{- if .Values.global.datadog.enabled }}\n{{- with .Values.global.datadog.agent.traceAgentUrl }}\n- name: DD_TRACE_AGENT_URL\n value: {{ . }}\n{{- end }}\n{{- if not .Values.global.datadog.agent.admission }}\n- name: DATADOG_JAVA_AGENT\n value: \"{{ .Values.global.datadog.enabled }}\"\n- name: DD_SERVICE\n value: \"{{ .Chart.Name }}\"\n- name: DD_ENV\n value: {{ .Values.global.datadog.env | required \"global.datadog.env is required.\" | quote }}\n- name: DD_VERSION\n value: \"{{ .Values.image.tag }}\"\n{{- end }}\n- name: DD_LOGS_INJECTION\n value: \"{{ .Values.global.datadog.agent.logsInjection }}\"\n- name: DD_PROFILING_ENABLED\n value: \"{{ .Values.global.datadog.agent.profiling }}\"\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_ENABLED\n value: \"{{ .Values.global.datadog.metrics.enabled }}\"\n{{- if .Values.global.datadog.metrics.enabled }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_API_KEY\n value: {{ .Values.global.datadog.metrics.apiKey | required \"global.datadog.metrics.apiKey is required.\" | quote }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_DESCRIPTIONS\n value: {{ .Values.global.datadog.metrics.descriptions | required \"global.datadog.metrics.descriptions is required.\" | quote }}\n{{- with .Values.global.datadog.metrics.applicationKey }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_APPLICATION_KEY\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.uri }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_URI\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.hostTag }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_HOST_TAG\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.step }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_STEP\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.connectTimeout }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_CONNECT_TIMEOUT\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.readTimeout }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_READ_TIMEOUT\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.batchSize }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_BATCH_SIZE\n value: {{ . | quote }}\n{{- end }}\n{{- end }}\n{{- end }}"` | |
481481
| alfresco-modeling-service.image.pullPolicy | string | `"Always"` | |
482482
| alfresco-modeling-service.image.repository | string | `"quay.io/alfresco/alfresco-modeling-service"` | |
483-
| alfresco-modeling-service.image.tag | string | `"7.20.0-alpha.493"` | |
483+
| alfresco-modeling-service.image.tag | string | `"7.20.0-rc.346"` | |
484484
| alfresco-modeling-service.ingress.annotations."nginx.ingress.kubernetes.io/rewrite-target" | string | `"/$1"` | |
485485
| alfresco-modeling-service.ingress.className | string | `"nginx"` | |
486486
| alfresco-modeling-service.ingress.enabled | bool | `true` | |
@@ -529,7 +529,7 @@ Kubernetes: `>=1.15.0-0`
529529
| alfresco-process-analytics-playground.graphql.client.url | string | `"http://alfresco-process-analytics-service.{{ .Release.Namespace }}.svc.cluster.local/analytics/graphql"` | |
530530
| alfresco-process-analytics-playground.image.pullPolicy | string | `"Always"` | |
531531
| alfresco-process-analytics-playground.image.repository | string | `"quay.io/alfresco/alfresco-process-analytics-graphql-playground"` | |
532-
| alfresco-process-analytics-playground.image.tag | string | `"7.20.0-alpha.271"` | |
532+
| alfresco-process-analytics-playground.image.tag | string | `"7.20.0-rc.346"` | |
533533
| alfresco-process-analytics-playground.ingress.annotations."nginx.ingress.kubernetes.io/affinity" | string | `"cookie"` | |
534534
| alfresco-process-analytics-playground.ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
535535
| alfresco-process-analytics-playground.ingress.annotations."nginx.ingress.kubernetes.io/session-cookie-expires" | string | `"172800"` | |
@@ -575,7 +575,7 @@ Kubernetes: `>=1.15.0-0`
575575
| alfresco-process-analytics-service.graphql.service.jwtIssuerUri | string | `"{{ include \"common.keycloak-url\" . }}/realms/{{ include \"common.keycloak-realm\" . }}"` | |
576576
| alfresco-process-analytics-service.image.pullPolicy | string | `"Always"` | |
577577
| alfresco-process-analytics-service.image.repository | string | `"quay.io/alfresco/alfresco-process-analytics-graphql-service"` | |
578-
| alfresco-process-analytics-service.image.tag | string | `"7.20.0-alpha.271"` | |
578+
| alfresco-process-analytics-service.image.tag | string | `"7.20.0-rc.346"` | |
579579
| alfresco-process-analytics-service.ingress.annotations."nginx.ingress.kubernetes.io/enable-cors" | string | `"true"` | |
580580
| alfresco-process-analytics-service.ingress.className | string | `"nginx"` | |
581581
| alfresco-process-analytics-service.ingress.enabled | bool | `true` | |
@@ -608,7 +608,7 @@ Kubernetes: `>=1.15.0-0`
608608
| alfresco-static-resources.enabled | bool | `true` | |
609609
| alfresco-static-resources.image.pullPolicy | string | `"Always"` | |
610610
| alfresco-static-resources.image.repository | string | `"quay.io/alfresco/apa-static-resources"` | |
611-
| alfresco-static-resources.image.tag | string | `"7.19.0-beta.169"` | |
611+
| alfresco-static-resources.image.tag | string | `"7.20.0-rc.346"` | |
612612
| alfresco-static-resources.ingress.enabled | bool | `false` | |
613613
| alfresco-static-resources.livenessProbe.path | string | `"/"` | |
614614
| alfresco-static-resources.livenessProbe.port | int | `8080` | |
@@ -633,7 +633,7 @@ Kubernetes: `>=1.15.0-0`
633633
| alfresco-tika-service.extraEnv | string | `"{{- if .Values.global.datadog.enabled }}\n{{- with .Values.global.datadog.agent.traceAgentUrl }}\n- name: DD_TRACE_AGENT_URL\n value: {{ . }}\n{{- end }}\n{{- if not .Values.global.datadog.agent.admission }}\n- name: DATADOG_JAVA_AGENT\n value: \"{{ .Values.global.datadog.enabled }}\"\n- name: DD_SERVICE\n value: \"{{ .Chart.Name }}\"\n- name: DD_ENV\n value: {{ .Values.global.datadog.env | required \"global.datadog.env is required.\" | quote }}\n- name: DD_VERSION\n value: \"{{ .Values.image.tag }}\"\n{{- end }}\n- name: DD_LOGS_INJECTION\n value: \"{{ .Values.global.datadog.agent.logsInjection }}\"\n- name: DD_PROFILING_ENABLED\n value: \"{{ .Values.global.datadog.agent.profiling }}\"\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_ENABLED\n value: \"{{ .Values.global.datadog.metrics.enabled }}\"\n{{- if .Values.global.datadog.metrics.enabled }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_API_KEY\n value: {{ .Values.global.datadog.metrics.apiKey | required \"global.datadog.metrics.apiKey is required.\" | quote }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_DESCRIPTIONS\n value: {{ .Values.global.datadog.metrics.descriptions | required \"global.datadog.metrics.descriptions is required.\" | quote }}\n{{- with .Values.global.datadog.metrics.applicationKey }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_APPLICATION_KEY\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.uri }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_URI\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.hostTag }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_HOST_TAG\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.step }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_STEP\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.connectTimeout }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_CONNECT_TIMEOUT\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.readTimeout }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_READ_TIMEOUT\n value: {{ . | quote }}\n{{- end }}\n{{- with .Values.global.datadog.metrics.batchSize }}\n- name: MANAGEMENT_DATADOG_METRICS_EXPORT_BATCH_SIZE\n value: {{ . | quote }}\n{{- end }}\n{{- end }}\n{{- end }}\n"` | |
634634
| alfresco-tika-service.image.pullPolicy | string | `"Always"` | |
635635
| alfresco-tika-service.image.repository | string | `"quay.io/alfresco/alfresco-process-tika"` | |
636-
| alfresco-tika-service.image.tag | string | `"7.20.0-alpha.271"` | |
636+
| alfresco-tika-service.image.tag | string | `"7.20.0-rc.346"` | |
637637
| alfresco-tika-service.ingress.enabled | bool | `false` | |
638638
| alfresco-tika-service.javaOpts.other | string | `"-XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"` | |
639639
| alfresco-tika-service.livenessProbe.path | string | `"/live"` | |

0 commit comments

Comments
 (0)