├── .checkov.yml ├── .checkov └── helm_vars.yaml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── actions │ └── charts-as-json │ │ └── action.yml ├── dependabot.yml ├── kics.yml └── workflows │ ├── bumpVersions.yml │ ├── docker-compose-community.yml │ ├── docker-compose-enterprise.yml │ ├── docs.yml │ ├── download-trials-release.yml │ ├── helm-community.yml │ ├── helm-enterprise.yml │ ├── helm-release.yml │ ├── helm-static-checks.yml │ ├── kics.yml │ ├── pre-commit-compose.yml │ └── pre-commit-helm.yml ├── .gitignore ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .ruby-version ├── .vscode └── tasks.json ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _includes └── head_custom.html ├── _sass └── color_schemes │ └── alfresco.scss ├── docker-compose ├── 23.N-compose.yaml ├── 7.4.N-compose.yaml ├── README.md ├── commons │ └── base.yaml ├── community-compose.yaml ├── compose.yaml ├── hxi-overrides.yaml ├── pre-release-compose.yaml ├── solr6-overrides.yaml └── updatecli-matrix-targets.yaml ├── docs ├── compose.md ├── docker-compose │ ├── README.md │ └── examples │ │ ├── config │ │ ├── telegraf-overrides.yaml │ │ └── telegraf.conf │ │ ├── customisation-guidelines.md │ │ ├── with-jconsole.md │ │ └── with-telegraf-metrics.md ├── helm-charts.md ├── helm-deployment.md ├── helm-examples.md ├── helm-guides.md ├── helm.md ├── helm │ ├── README.md │ ├── autoscaling.md │ ├── desktop-deployment.md │ ├── eks-deployment.md │ ├── examples │ │ ├── alf_license.md │ │ ├── custom-metadata-keystore.md │ │ ├── customisation-guidelines.md │ │ ├── email-enabled.md │ │ ├── external-hazelcast.md │ │ ├── external-hazelcast_files │ │ │ ├── acs-hazelcast.yaml │ │ │ ├── configmap-hazelcast.yaml │ │ │ └── hazelcast.yaml │ │ ├── search-services.md │ │ ├── with-ai.md │ │ ├── with-aws-services.md │ │ ├── with-elasticsearch-auth.md │ │ ├── with-external-infrastructure.md │ │ ├── with-keycloak.md │ │ ├── with-knowledge-retrieval.md │ │ ├── with-ms-teams.md │ │ └── with-ooi.md │ ├── images │ │ ├── dfd-k8s-enabled.png │ │ ├── dfd-resources.png │ │ ├── eks-attach-policy.png │ │ ├── eks-db-inbound-rules.png │ │ ├── eks-db-security-group.png │ │ ├── eks-efs.png │ │ ├── eks-mq-inbound-rules.png │ │ ├── eks-nfs-inbound-rules.png │ │ ├── eks-s3-iam-policy.png │ │ ├── eks-vpc-security-group.png │ │ ├── helm-eks-community.png │ │ ├── helm-eks-enterprise.png │ │ ├── k8s-dashboard.png │ │ ├── k8s-lens.png │ │ └── visualvm.png │ ├── ingress-nginx.md │ ├── kind-deployment.md │ ├── registry-authentication.md │ ├── security.md │ ├── storage.md │ ├── upgrades.md │ └── values │ │ ├── elasticsearch_auth_values.yaml │ │ ├── hxi.yml │ │ ├── letsencrypt_values.yaml │ │ └── local-dev_values.yaml ├── images │ ├── favicon.ico │ └── hyland-alfresco-logos.png └── index.md ├── helm ├── acs-sso-example │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── docs │ │ ├── sso-guide.md │ │ └── step-by-step-guide.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap-db.yaml │ │ ├── configmap-idp.yaml │ │ ├── configmap-mq.yaml │ │ ├── configmap-repo.yaml │ │ ├── configmap-share-properties.yaml │ │ ├── configmap-share.yaml │ │ ├── secret-db.yaml │ │ ├── secret-idp-realm.yaml │ │ ├── secret-idp.yaml │ │ └── secret-mq.yaml │ ├── updatecli-matrix-targets.yaml │ └── values.yaml └── alfresco-content-services │ ├── .helmignore │ ├── 23.N_values.yaml │ ├── 7.4.N_values.yaml │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── community_values.yaml │ ├── linter_values.yaml │ ├── pre-release_values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers-ats.tpl │ ├── _helpers-audit.tpl │ ├── _helpers-database.tpl │ ├── _helpers-message-broker.tpl │ ├── _helpers-search.tpl │ ├── _helpers.tpl │ ├── config-infrastructure.yaml │ ├── config-repository.yaml │ ├── keda │ │ ├── _helpers-keda.tpl │ │ ├── auth-trigger-activemq.yaml │ │ ├── scaler-activemq-ats-im.yaml │ │ ├── scaler-activemq-ats-lo.yaml │ │ ├── scaler-activemq-ats-misc.yaml │ │ ├── scaler-activemq-ats-pdf.yaml │ │ ├── scaler-activemq-ats-tika.yaml │ │ └── scaler-prometheus-repo.yaml │ ├── secret-audit-elasticsearch.yaml │ ├── secret-database.yaml │ ├── secret-mail.yaml │ ├── secret-message-broker.yaml │ ├── secret-search.yaml │ ├── secret-sync-database.yaml │ └── test │ │ ├── configmap-dtas.yaml │ │ └── pod-dtas.yaml │ ├── tests │ ├── activemq_test.yaml │ ├── config-infrastructure_test.yaml │ ├── config-repository_test.yaml │ ├── keda_test.yaml │ ├── mail_test.yaml │ ├── search_test.yaml │ ├── secret-database_test.yaml │ └── values │ │ ├── externalBroker_values.yaml │ │ ├── keda.yaml │ │ └── test_values.yaml │ ├── updatecli-matrix-targets.yaml │ └── values.yaml ├── test ├── community-integration-test-values.yaml ├── enterprise-integration-test-values.yaml ├── k6 │ └── acs-sso-example.js └── postman │ ├── docker-compose │ └── acs-test-docker-compose-collection.json │ └── helm │ ├── acs-test-helm-collection.json │ ├── acs-validate-volume-collection.json │ └── sync-service-test-helm-collection.json └── updatecli.d └── helm-autodiscovery.yaml /.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.checkov.yml -------------------------------------------------------------------------------- /.checkov/helm_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.checkov/helm_vars.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/actions/charts-as-json/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/actions/charts-as-json/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/kics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/kics.yml -------------------------------------------------------------------------------- /.github/workflows/bumpVersions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/bumpVersions.yml -------------------------------------------------------------------------------- /.github/workflows/docker-compose-community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/docker-compose-community.yml -------------------------------------------------------------------------------- /.github/workflows/docker-compose-enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/docker-compose-enterprise.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/download-trials-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/download-trials-release.yml -------------------------------------------------------------------------------- /.github/workflows/helm-community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/helm-community.yml -------------------------------------------------------------------------------- /.github/workflows/helm-enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/helm-enterprise.yml -------------------------------------------------------------------------------- /.github/workflows/helm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/helm-release.yml -------------------------------------------------------------------------------- /.github/workflows/helm-static-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/helm-static-checks.yml -------------------------------------------------------------------------------- /.github/workflows/kics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/kics.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/pre-commit-compose.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-helm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.github/workflows/pre-commit-helm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.3 2 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/_includes/head_custom.html -------------------------------------------------------------------------------- /_sass/color_schemes/alfresco.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/_sass/color_schemes/alfresco.scss -------------------------------------------------------------------------------- /docker-compose/23.N-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/23.N-compose.yaml -------------------------------------------------------------------------------- /docker-compose/7.4.N-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/7.4.N-compose.yaml -------------------------------------------------------------------------------- /docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/README.md -------------------------------------------------------------------------------- /docker-compose/commons/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/commons/base.yaml -------------------------------------------------------------------------------- /docker-compose/community-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/community-compose.yaml -------------------------------------------------------------------------------- /docker-compose/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/compose.yaml -------------------------------------------------------------------------------- /docker-compose/hxi-overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/hxi-overrides.yaml -------------------------------------------------------------------------------- /docker-compose/pre-release-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/pre-release-compose.yaml -------------------------------------------------------------------------------- /docker-compose/solr6-overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/solr6-overrides.yaml -------------------------------------------------------------------------------- /docker-compose/updatecli-matrix-targets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docker-compose/updatecli-matrix-targets.yaml -------------------------------------------------------------------------------- /docs/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/compose.md -------------------------------------------------------------------------------- /docs/docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/docker-compose/README.md -------------------------------------------------------------------------------- /docs/docker-compose/examples/config/telegraf-overrides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/docker-compose/examples/config/telegraf-overrides.yaml -------------------------------------------------------------------------------- /docs/docker-compose/examples/config/telegraf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/docker-compose/examples/config/telegraf.conf -------------------------------------------------------------------------------- /docs/docker-compose/examples/customisation-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/docker-compose/examples/customisation-guidelines.md -------------------------------------------------------------------------------- /docs/docker-compose/examples/with-jconsole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/docker-compose/examples/with-jconsole.md -------------------------------------------------------------------------------- /docs/docker-compose/examples/with-telegraf-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/docker-compose/examples/with-telegraf-metrics.md -------------------------------------------------------------------------------- /docs/helm-charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm-charts.md -------------------------------------------------------------------------------- /docs/helm-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm-deployment.md -------------------------------------------------------------------------------- /docs/helm-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm-examples.md -------------------------------------------------------------------------------- /docs/helm-guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm-guides.md -------------------------------------------------------------------------------- /docs/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm.md -------------------------------------------------------------------------------- /docs/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/README.md -------------------------------------------------------------------------------- /docs/helm/autoscaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/autoscaling.md -------------------------------------------------------------------------------- /docs/helm/desktop-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/desktop-deployment.md -------------------------------------------------------------------------------- /docs/helm/eks-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/eks-deployment.md -------------------------------------------------------------------------------- /docs/helm/examples/alf_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/alf_license.md -------------------------------------------------------------------------------- /docs/helm/examples/custom-metadata-keystore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/custom-metadata-keystore.md -------------------------------------------------------------------------------- /docs/helm/examples/customisation-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/customisation-guidelines.md -------------------------------------------------------------------------------- /docs/helm/examples/email-enabled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/email-enabled.md -------------------------------------------------------------------------------- /docs/helm/examples/external-hazelcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/external-hazelcast.md -------------------------------------------------------------------------------- /docs/helm/examples/external-hazelcast_files/acs-hazelcast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/external-hazelcast_files/acs-hazelcast.yaml -------------------------------------------------------------------------------- /docs/helm/examples/external-hazelcast_files/configmap-hazelcast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/external-hazelcast_files/configmap-hazelcast.yaml -------------------------------------------------------------------------------- /docs/helm/examples/external-hazelcast_files/hazelcast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/external-hazelcast_files/hazelcast.yaml -------------------------------------------------------------------------------- /docs/helm/examples/search-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/search-services.md -------------------------------------------------------------------------------- /docs/helm/examples/with-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-ai.md -------------------------------------------------------------------------------- /docs/helm/examples/with-aws-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-aws-services.md -------------------------------------------------------------------------------- /docs/helm/examples/with-elasticsearch-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-elasticsearch-auth.md -------------------------------------------------------------------------------- /docs/helm/examples/with-external-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-external-infrastructure.md -------------------------------------------------------------------------------- /docs/helm/examples/with-keycloak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-keycloak.md -------------------------------------------------------------------------------- /docs/helm/examples/with-knowledge-retrieval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-knowledge-retrieval.md -------------------------------------------------------------------------------- /docs/helm/examples/with-ms-teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-ms-teams.md -------------------------------------------------------------------------------- /docs/helm/examples/with-ooi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/examples/with-ooi.md -------------------------------------------------------------------------------- /docs/helm/images/dfd-k8s-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/dfd-k8s-enabled.png -------------------------------------------------------------------------------- /docs/helm/images/dfd-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/dfd-resources.png -------------------------------------------------------------------------------- /docs/helm/images/eks-attach-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-attach-policy.png -------------------------------------------------------------------------------- /docs/helm/images/eks-db-inbound-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-db-inbound-rules.png -------------------------------------------------------------------------------- /docs/helm/images/eks-db-security-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-db-security-group.png -------------------------------------------------------------------------------- /docs/helm/images/eks-efs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-efs.png -------------------------------------------------------------------------------- /docs/helm/images/eks-mq-inbound-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-mq-inbound-rules.png -------------------------------------------------------------------------------- /docs/helm/images/eks-nfs-inbound-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-nfs-inbound-rules.png -------------------------------------------------------------------------------- /docs/helm/images/eks-s3-iam-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-s3-iam-policy.png -------------------------------------------------------------------------------- /docs/helm/images/eks-vpc-security-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/eks-vpc-security-group.png -------------------------------------------------------------------------------- /docs/helm/images/helm-eks-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/helm-eks-community.png -------------------------------------------------------------------------------- /docs/helm/images/helm-eks-enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/helm-eks-enterprise.png -------------------------------------------------------------------------------- /docs/helm/images/k8s-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/k8s-dashboard.png -------------------------------------------------------------------------------- /docs/helm/images/k8s-lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/k8s-lens.png -------------------------------------------------------------------------------- /docs/helm/images/visualvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/images/visualvm.png -------------------------------------------------------------------------------- /docs/helm/ingress-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/ingress-nginx.md -------------------------------------------------------------------------------- /docs/helm/kind-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/kind-deployment.md -------------------------------------------------------------------------------- /docs/helm/registry-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/registry-authentication.md -------------------------------------------------------------------------------- /docs/helm/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/security.md -------------------------------------------------------------------------------- /docs/helm/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/storage.md -------------------------------------------------------------------------------- /docs/helm/upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/upgrades.md -------------------------------------------------------------------------------- /docs/helm/values/elasticsearch_auth_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/values/elasticsearch_auth_values.yaml -------------------------------------------------------------------------------- /docs/helm/values/hxi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/values/hxi.yml -------------------------------------------------------------------------------- /docs/helm/values/letsencrypt_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/values/letsencrypt_values.yaml -------------------------------------------------------------------------------- /docs/helm/values/local-dev_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/helm/values/local-dev_values.yaml -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/hyland-alfresco-logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/images/hyland-alfresco-logos.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/docs/index.md -------------------------------------------------------------------------------- /helm/acs-sso-example/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/.helmignore -------------------------------------------------------------------------------- /helm/acs-sso-example/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/Chart.lock -------------------------------------------------------------------------------- /helm/acs-sso-example/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/Chart.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/README.md -------------------------------------------------------------------------------- /helm/acs-sso-example/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/README.md.gotmpl -------------------------------------------------------------------------------- /helm/acs-sso-example/docs/sso-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/docs/sso-guide.md -------------------------------------------------------------------------------- /helm/acs-sso-example/docs/step-by-step-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/docs/step-by-step-guide.md -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/configmap-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/configmap-db.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/configmap-idp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/configmap-idp.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/configmap-mq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/configmap-mq.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/configmap-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/configmap-repo.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/configmap-share-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/configmap-share-properties.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/configmap-share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/configmap-share.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/secret-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/secret-db.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/secret-idp-realm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/secret-idp-realm.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/secret-idp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/secret-idp.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/templates/secret-mq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/templates/secret-mq.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/updatecli-matrix-targets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/updatecli-matrix-targets.yaml -------------------------------------------------------------------------------- /helm/acs-sso-example/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/acs-sso-example/values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/.helmignore -------------------------------------------------------------------------------- /helm/alfresco-content-services/23.N_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/23.N_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/7.4.N_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/7.4.N_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/Chart.lock -------------------------------------------------------------------------------- /helm/alfresco-content-services/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/Chart.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/README.md -------------------------------------------------------------------------------- /helm/alfresco-content-services/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/README.md.gotmpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/community_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/community_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/linter_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/linter_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/pre-release_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/pre-release_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/_helpers-ats.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/_helpers-ats.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/_helpers-audit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/_helpers-audit.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/_helpers-database.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/_helpers-database.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/_helpers-message-broker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/_helpers-message-broker.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/_helpers-search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/_helpers-search.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/config-infrastructure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/config-infrastructure.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/config-repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/config-repository.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/_helpers-keda.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/_helpers-keda.tpl -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/auth-trigger-activemq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/auth-trigger-activemq.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/scaler-activemq-ats-im.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/scaler-activemq-ats-im.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/scaler-activemq-ats-lo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/scaler-activemq-ats-lo.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/scaler-activemq-ats-misc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/scaler-activemq-ats-misc.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/scaler-activemq-ats-pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/scaler-activemq-ats-pdf.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/scaler-activemq-ats-tika.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/scaler-activemq-ats-tika.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/keda/scaler-prometheus-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/keda/scaler-prometheus-repo.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/secret-audit-elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/secret-audit-elasticsearch.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/secret-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/secret-database.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/secret-mail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/secret-mail.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/secret-message-broker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/secret-message-broker.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/secret-search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/secret-search.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/secret-sync-database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/secret-sync-database.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/test/configmap-dtas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/test/configmap-dtas.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/templates/test/pod-dtas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/templates/test/pod-dtas.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/activemq_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/activemq_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/config-infrastructure_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/config-infrastructure_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/config-repository_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/config-repository_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/keda_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/keda_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/mail_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/mail_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/search_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/search_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/secret-database_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/secret-database_test.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/values/externalBroker_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/values/externalBroker_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/values/keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/values/keda.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/tests/values/test_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/tests/values/test_values.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/updatecli-matrix-targets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/updatecli-matrix-targets.yaml -------------------------------------------------------------------------------- /helm/alfresco-content-services/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/helm/alfresco-content-services/values.yaml -------------------------------------------------------------------------------- /test/community-integration-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/community-integration-test-values.yaml -------------------------------------------------------------------------------- /test/enterprise-integration-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/enterprise-integration-test-values.yaml -------------------------------------------------------------------------------- /test/k6/acs-sso-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/k6/acs-sso-example.js -------------------------------------------------------------------------------- /test/postman/docker-compose/acs-test-docker-compose-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/postman/docker-compose/acs-test-docker-compose-collection.json -------------------------------------------------------------------------------- /test/postman/helm/acs-test-helm-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/postman/helm/acs-test-helm-collection.json -------------------------------------------------------------------------------- /test/postman/helm/acs-validate-volume-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/postman/helm/acs-validate-volume-collection.json -------------------------------------------------------------------------------- /test/postman/helm/sync-service-test-helm-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/test/postman/helm/sync-service-test-helm-collection.json -------------------------------------------------------------------------------- /updatecli.d/helm-autodiscovery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/acs-deployment/HEAD/updatecli.d/helm-autodiscovery.yaml --------------------------------------------------------------------------------