├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── compose ├── chub │ ├── 4.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 5.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 5.1 │ │ ├── ltsc2019 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ └── 5.2 │ │ ├── ltsc2019 │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ ├── xm1 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── dcrm │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ └── 9.0 │ │ ├── ltsc2019 │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── dds │ └── 1.0 │ │ ├── 2009 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── def-ts │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── sample.env │ │ │ │ └── tenant-service.override.yml │ │ │ ├── xp0 │ │ │ │ ├── sample.env │ │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ │ ├── sample.env │ │ │ │ └── tenant-service.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── sample.env │ │ │ └── tenant-service.override.yml │ │ │ ├── xp0 │ │ │ ├── sample.env │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ ├── sample.env │ │ │ └── tenant-service.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ └── ltsc2022 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ └── 9.0 │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── tenant-service.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── tenant-service.override.yml ├── def │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ └── 9.0 │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── expedge │ ├── 18.0 │ │ └── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ ├── 19.0 │ │ ├── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ │ └── ltsc2022 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ ├── 20.0 │ │ ├── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ │ └── ltsc2022 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ ├── 21.0 │ │ ├── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ │ └── ltsc2022 │ │ │ ├── .env-example │ │ │ └── docker-compose.xe.override.yml │ └── 22.0 │ │ ├── ltsc2019 │ │ ├── .env-example │ │ └── docker-compose.xe.override.yml │ │ └── ltsc2022 │ │ ├── .env-example │ │ └── docker-compose.xe.override.yml ├── horizon │ ├── 10.1 │ │ ├── 2009 │ │ │ ├── .env-example │ │ │ ├── dam.override.yml │ │ │ ├── docker-compose.override.yml │ │ │ └── sxa.override.yml │ │ └── ltsc2019 │ │ │ ├── .env-example │ │ │ ├── dam.override.yml │ │ │ ├── docker-compose.override.yml │ │ │ └── sxa.override.yml │ └── 10.2 │ │ ├── 2009 │ │ ├── .env-example │ │ ├── dam.override.yaml │ │ ├── docker-compose.override.yaml │ │ └── sxa.override.yaml │ │ ├── ltsc2019 │ │ ├── .env-example │ │ ├── dam.override.yaml │ │ ├── docker-compose.override.yaml │ │ └── sxa.override.yaml │ │ └── ltsc2022 │ │ ├── .env-example │ │ ├── dam.override.yaml │ │ ├── docker-compose.override.yaml │ │ └── sxa.override.yaml ├── publishing │ ├── 10.1 │ │ └── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.sps.override.yml │ ├── 10.2 │ │ ├── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.sps.override.yml │ │ └── ltsc2022 │ │ │ ├── .env-example │ │ │ └── docker-compose.sps.override.yml │ ├── 10.3 │ │ ├── ltsc2019 │ │ │ ├── .env-example │ │ │ └── docker-compose.sps.override.yml │ │ └── ltsc2022 │ │ │ ├── .env-example │ │ │ └── docker-compose.sps.override.yml │ └── 10.4 │ │ ├── ltsc2019 │ │ ├── .env-example │ │ └── docker-compose.sps.override.yml │ │ └── ltsc2022 │ │ ├── .env-example │ │ └── docker-compose.sps.override.yml ├── scse │ └── 1.0 │ │ ├── ltsc2019 │ │ ├── ltsc2019 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── sfcrm │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ └── 9.0 │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── sfmcbde-ts │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── tenant-service.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ └── 8.0 │ │ ├── ltsc2019 │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── tenant-service.override.yml │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── tenant-service.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── tenant-service.override.yml ├── sfmcbde │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ └── 9.0 │ │ └── ltsc2022 │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml ├── sfmcce │ ├── 6.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 7.0 │ │ ├── 2009 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2019 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ ├── xm1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ │ ├── .env-example │ │ │ │ └── docker-compose.override.yml │ │ └── ltsc2022 │ │ │ ├── xm1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ ├── xp0 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ │ │ └── xp1 │ │ │ ├── .env-example │ │ │ └── docker-compose.override.yml │ └── 9.0 │ │ └── ltsc2022 │ │ ├── xm1 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ ├── xp0 │ │ ├── .env-example │ │ └── docker-compose.override.yml │ │ └── xp1 │ │ ├── .env-example │ │ └── docker-compose.override.yml └── sxp │ ├── 10.0 │ └── ltsc2019 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ └── xp1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ ├── xm1 │ │ ├── .env │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ ├── xp0 │ │ ├── .env │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ └── xp1 │ │ ├── .env │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ └── readme.md │ │ ├── solr-data │ │ └── readme.md │ │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ ├── 10.1 │ └── ltsc2019 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ └── xp1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ ├── xm1 │ │ ├── .env │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ ├── xp0 │ │ ├── .env │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ └── xp1 │ │ ├── .env │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ └── readme.md │ │ ├── solr-data │ │ └── readme.md │ │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ ├── 10.2 │ ├── ltsc2019 │ │ ├── upgrade │ │ │ ├── xm1 │ │ │ │ ├── compose-init.ps1 │ │ │ │ ├── docker-compose.upgrade.yml │ │ │ │ └── upgrade.env │ │ │ └── xp1 │ │ │ │ ├── compose-init.ps1 │ │ │ │ ├── docker-compose.upgrade.yml │ │ │ │ └── upgrade.env │ │ ├── xm1 │ │ │ ├── .env │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.yml │ │ │ ├── mssql-data │ │ │ │ └── readme.md │ │ │ ├── solr-data │ │ │ │ └── readme.md │ │ │ └── traefik │ │ │ │ ├── certs │ │ │ │ └── readme │ │ │ │ └── config │ │ │ │ └── dynamic │ │ │ │ └── certs_config.yaml │ │ ├── xp0 │ │ │ ├── .env │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.yml │ │ │ ├── mssql-data │ │ │ │ └── readme.md │ │ │ ├── solr-data │ │ │ │ └── readme.md │ │ │ └── traefik │ │ │ │ ├── certs │ │ │ │ └── readme │ │ │ │ └── config │ │ │ │ └── dynamic │ │ │ │ └── certs_config.yaml │ │ └── xp1 │ │ │ ├── .env │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.yml │ │ │ ├── mssql-data │ │ │ └── readme.md │ │ │ ├── solr-data │ │ │ └── readme.md │ │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ └── ltsc2022 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ └── xp1 │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ ├── xm1 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ ├── xp0 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ └── xp1 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ └── readme.md │ │ ├── solr-data │ │ └── readme.md │ │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ ├── 10.3 │ ├── ltsc2019 │ │ ├── upgrade │ │ │ ├── xm1 │ │ │ │ ├── compose-init.ps1 │ │ │ │ ├── docker-compose.upgrade.yml │ │ │ │ └── upgrade.env │ │ │ └── xp1 │ │ │ │ ├── compose-init.ps1 │ │ │ │ ├── docker-compose.upgrade.yml │ │ │ │ └── upgrade.env │ │ ├── xm1 │ │ │ ├── .env │ │ │ ├── compose-init.ps1 │ │ │ ├── device-detection-data │ │ │ │ └── readme.md │ │ │ ├── docker-compose.yml │ │ │ ├── mssql-data │ │ │ │ └── readme.md │ │ │ ├── solr-data │ │ │ │ └── readme.md │ │ │ └── traefik │ │ │ │ ├── certs │ │ │ │ └── readme │ │ │ │ └── config │ │ │ │ └── dynamic │ │ │ │ └── certs_config.yaml │ │ ├── xp0 │ │ │ ├── .env │ │ │ ├── compose-init.ps1 │ │ │ ├── device-detection-data │ │ │ │ └── readme.md │ │ │ ├── docker-compose.yml │ │ │ ├── mssql-data │ │ │ │ └── readme.md │ │ │ ├── solr-data │ │ │ │ └── readme.md │ │ │ └── traefik │ │ │ │ ├── certs │ │ │ │ └── readme │ │ │ │ └── config │ │ │ │ └── dynamic │ │ │ │ └── certs_config.yaml │ │ └── xp1 │ │ │ ├── .env │ │ │ ├── compose-init.ps1 │ │ │ ├── device-detection-data │ │ │ └── readme.md │ │ │ ├── docker-compose.yml │ │ │ ├── mssql-data │ │ │ └── readme.md │ │ │ ├── solr-data │ │ │ └── readme.md │ │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ └── ltsc2022 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ └── xp1 │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ ├── xm1 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── device-detection-data │ │ │ └── readme.md │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ ├── xp0 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── device-detection-data │ │ │ └── readme.md │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ │ └── xp1 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── device-detection-data │ │ └── readme.md │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ └── readme.md │ │ ├── solr-data │ │ └── readme.md │ │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ └── 10.4 │ ├── ltsc2019 │ ├── upgrade │ │ ├── xm1 │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ │ └── xp1 │ │ │ ├── compose-init.ps1 │ │ │ ├── docker-compose.upgrade.yml │ │ │ └── upgrade.env │ ├── xm1 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── device-detection-data │ │ │ └── readme.md │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ ├── xp0 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── device-detection-data │ │ │ └── readme.md │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ │ └── readme.md │ │ ├── solr-data │ │ │ └── readme.md │ │ └── traefik │ │ │ ├── certs │ │ │ └── readme │ │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ └── xp1 │ │ ├── .env │ │ ├── compose-init.ps1 │ │ ├── device-detection-data │ │ └── readme.md │ │ ├── docker-compose.yml │ │ ├── mssql-data │ │ └── readme.md │ │ ├── solr-data │ │ └── readme.md │ │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ └── ltsc2022 │ ├── upgrade │ ├── xm1 │ │ ├── compose-init.ps1 │ │ ├── docker-compose.upgrade.yml │ │ └── upgrade.env │ └── xp1 │ │ ├── compose-init.ps1 │ │ ├── docker-compose.upgrade.yml │ │ └── upgrade.env │ ├── xm1 │ ├── .env │ ├── compose-init.ps1 │ ├── device-detection-data │ │ └── readme.md │ ├── docker-compose.yml │ ├── mssql-data │ │ └── readme.md │ ├── solr-data │ │ └── readme.md │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ ├── xp0 │ ├── .env │ ├── compose-init.ps1 │ ├── device-detection-data │ │ └── readme.md │ ├── docker-compose.yml │ ├── mssql-data │ │ └── readme.md │ ├── solr-data │ │ └── readme.md │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml │ └── xp1 │ ├── .env │ ├── compose-init.ps1 │ ├── device-detection-data │ └── readme.md │ ├── docker-compose.yml │ ├── mssql-data │ └── readme.md │ ├── solr-data │ └── readme.md │ └── traefik │ ├── certs │ └── readme │ └── config │ └── dynamic │ └── certs_config.yaml ├── demo ├── .gitignore ├── .gitkeep ├── 10.0 │ ├── headless-xp0 │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── app │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ └── kiosk │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── platform-xp │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── ps │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── smtp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── platform-xp0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── cd │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── ps │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── smtp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── sitecore-xp │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── cd │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cm │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cortexprocessing │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cortexprocessingworker │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cortexreporting │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── id │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Ingress.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Job.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── prc │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── redis │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── rep │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── solr-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Job.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── solr │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── xdbautomation │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── xdbautomationrpt │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── xdbautomationworker │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── xdbcollection │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── xdbrefdata │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── xdbsearch │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ └── xdbsearchworker │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ └── sitecore-xp0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ ├── authoringhost │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── cm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── id │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── ingress │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Ingress.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── mssql │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── Serviceaccount.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── solr │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── serviceaccount.yml │ │ │ └── values.yaml │ │ ├── xconnect │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── xdbautomationworker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ └── xdbsearchworker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── Deployment.yml │ │ │ ├── Service.yml │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ └── _helpers.tpl │ │ └── values.yaml ├── 10.1 │ ├── edge-xm0 │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── cdp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ └── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── headless-bx-oc-xm1 │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── boxever │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── headless-bx-oc │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── boxever │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── headless-xm1 │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── app │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ ├── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── kiosk │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ ├── ps-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ └── ps │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── headless-xp0 │ │ ├── .gitignore │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── app │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ └── kiosk │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── headstart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── buyer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ ├── middleware │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ └── seller │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── platform-xp0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── cd │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Ingress.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── ps-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ps │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── smtp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ └── tenantservice │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── sitecore-xm0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── authoringhost │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cm │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── id │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Ingress.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── Serviceaccount.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── solr-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ └── solr │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── serviceaccount.yml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── sitecore-xm1 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── authoringhost │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cd │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cm │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── id │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Ingress.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── Serviceaccount.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── solr-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ └── solr │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── serviceaccount.yml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ └── sitecore-xp0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ ├── authoringhost │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── cm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── id │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── ingress │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Ingress.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── mssql │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── Serviceaccount.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── solr-init │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── solr │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── serviceaccount.yml │ │ │ └── values.yaml │ │ ├── xconnect │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── xdbautomationworker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ └── xdbsearchworker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── Deployment.yml │ │ │ ├── Service.yml │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ └── _helpers.tpl │ │ └── values.yaml ├── 10.2 │ ├── edge-xm0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── cdp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── ingress.yaml │ │ │ │ └── values.yaml │ │ │ └── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── platform-xp0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── cd │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Ingress.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── ps-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ps │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── smtp │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ └── tenantservice │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── product-xm0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ └── initcontainer │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ ├── sitecore-xm0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── authoringhost │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── cm │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── id │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── ingress │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Ingress.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── mssql │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ ├── Pvc.yml │ │ │ │ │ ├── Service.yml │ │ │ │ │ ├── Serviceaccount.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ ├── solr-init │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── Deployment.yml │ │ │ │ │ └── _helpers.tpl │ │ │ │ └── values.yaml │ │ │ └── solr │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── serviceaccount.yml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ └── _helpers.tpl │ │ └── values.yaml │ └── sitecore-xp0 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ ├── authoringhost │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── cm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── id │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── ingress │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Ingress.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── mssql-init │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── mssql │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── Serviceaccount.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── solr-init │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── solr │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Pvc.yml │ │ │ │ ├── Service.yml │ │ │ │ ├── _helpers.tpl │ │ │ │ └── serviceaccount.yml │ │ │ └── values.yaml │ │ ├── xconnect │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── xdbautomationworker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── Deployment.yml │ │ │ │ ├── Service.yml │ │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ └── xdbsearchworker │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── Deployment.yml │ │ │ ├── Service.yml │ │ │ └── _helpers.tpl │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ └── _helpers.tpl │ │ └── values.yaml └── 9.3 │ └── sitecore-demo-platform │ ├── .helmignore │ ├── Chart.yaml │ ├── charts │ ├── automationengine │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── cd │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── cm │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── indexworker │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── initcontainer │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ └── values.yaml │ ├── ps │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── smtp │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ └── values.yaml │ ├── solr │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── pvc.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── sql │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── pvc.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ └── xconnect │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── templates │ └── _helpers.tpl │ └── values.yaml ├── k8s ├── chub │ ├── 4.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.chub.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ │ └── sitecore-dam-search-page.txt │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.chub.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ └── sitecore-dam-search-page.txt │ ├── 5.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.scch.yaml │ │ │ ├── patch-cm.scch.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ │ └── sitecore-dam-search-page.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.scch.yaml │ │ │ ├── patch-cm.scch.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ └── sitecore-dam-search-page.txt │ ├── 5.1 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ ├── xm1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cd.scch.yaml │ │ │ │ ├── patch-cm.scch.yaml │ │ │ │ └── secrets │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ │ │ └── sitecore-dam-search-page.txt │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cd.scch.yaml │ │ │ │ ├── patch-cm.scch.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ │ └── sitecore-dam-search-page.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.scch.yaml │ │ │ ├── patch-cm.scch.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ │ └── sitecore-dam-search-page.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.scch.yaml │ │ │ ├── patch-cm.scch.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ └── sitecore-dam-search-page.txt │ └── 5.2 │ │ ├── ltsc2019 │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.scch.yaml │ │ │ ├── patch-cm.scch.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ │ └── sitecore-dam-search-page.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.scch.yaml │ │ │ ├── patch-cm.scch.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ └── sitecore-dam-search-page.txt │ │ └── ltsc2022 │ │ └── overrides │ │ ├── xm1 │ │ ├── kustomization.yaml │ │ ├── patch-cd.scch.yaml │ │ ├── patch-cm.scch.yaml │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-cmp-content-hub.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ │ ├── sitecore-dam-content-hub.txt │ │ │ ├── sitecore-dam-external-redirect-key.txt │ │ │ └── sitecore-dam-search-page.txt │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cd.scch.yaml │ │ ├── patch-cm.scch.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-cmp-content-hub.txt │ │ ├── sitecore-cmp-service-bus-entity-path-in.txt │ │ ├── sitecore-cmp-service-bus-entity-path-out.txt │ │ ├── sitecore-cmp-service-bus-subscription.txt │ │ ├── sitecore-dam-content-hub.txt │ │ ├── sitecore-dam-external-redirect-key.txt │ │ └── sitecore-dam-search-page.txt ├── dcrm │ ├── 6.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.dcrm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-data-exchange-staging.txt │ │ │ └── sitecore-dcrm.txt │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.dcrm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-data-exchange-staging.txt │ │ │ └── sitecore-dcrm.txt │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ └── xp1 │ │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.dcrm.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-data-exchange-staging.txt │ │ │ │ └── sitecore-dcrm.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.dcrm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-data-exchange-staging.txt │ │ │ └── sitecore-dcrm.txt │ └── 9.0 │ │ ├── ltsc2019 │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.dcrm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-data-exchange-staging.txt │ │ │ └── sitecore-dcrm.txt │ │ └── ltsc2022 │ │ └── overrides │ │ └── xp1 │ │ ├── init │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── patch-cm.dcrm.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-data-exchange-staging.txt │ │ └── sitecore-dcrm.txt ├── dds │ └── 1.0 │ │ └── ltsc2019 │ │ ├── dds │ │ ├── dds.yaml │ │ ├── kustomization.yaml │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-exm-internalapi-key.txt │ │ └── overrides │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-exm-authentication-key.txt │ │ ├── sitecore-exm-cryptographic-key.txt │ │ └── sitecore-exm-internalapi-key.txt ├── def-ts │ ├── 6.0 │ │ └── ltsc2019 │ │ │ ├── ingress-nginx │ │ │ └── ingress.yaml │ │ │ ├── kustomization.yaml │ │ │ └── ts.yaml │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── ingress-nginx │ │ │ ├── kustomization.yaml │ │ │ └── patch-ingress.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── tenant-service-sitecore-connection.txt │ │ │ ├── tenant-service-xconnect-collection.txt │ │ │ └── tls │ │ │ │ └── global-ts │ │ │ │ └── readme.md │ │ │ └── ts.yaml │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ └── xp1 │ │ │ │ ├── ingress-nginx │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-ingress.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── tenant-service-sitecore-connection.txt │ │ │ │ ├── tenant-service-xconnect-collection.txt │ │ │ │ └── tls │ │ │ │ │ └── global-ts │ │ │ │ │ └── readme.md │ │ │ │ └── ts.yaml │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── ingress-nginx │ │ │ ├── kustomization.yaml │ │ │ └── patch-ingress.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── tenant-service-sitecore-connection.txt │ │ │ ├── tenant-service-xconnect-collection.txt │ │ │ └── tls │ │ │ │ └── global-ts │ │ │ │ └── readme.md │ │ │ └── ts.yaml │ └── 9.0 │ │ └── ltsc2022 │ │ └── overrides │ │ └── xp1 │ │ ├── ingress-nginx │ │ ├── kustomization.yaml │ │ └── patch-ingress.yaml │ │ ├── kustomization.yaml │ │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── tenant-service-sitecore-connection.txt │ │ ├── tenant-service-xconnect-collection.txt │ │ └── tls │ │ │ └── global-ts │ │ │ └── readme.md │ │ └── ts.yaml ├── def │ ├── 6.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-tenant-service-connection-string.txt │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-tenant-service-connection-string.txt │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ └── kustomization.yaml │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.def.yaml │ │ │ ├── patch-cm.def.yaml │ │ │ ├── patch-xdbautomationworker.def.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-tenant-service-connection-string.txt │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ ├── xm1 │ │ │ │ └── kustomization.yaml │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cd.def.yaml │ │ │ │ ├── patch-cm.def.yaml │ │ │ │ ├── patch-xdbautomationworker.def.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-tenant-service-connection-string.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ └── kustomization.yaml │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cd.def.yaml │ │ │ ├── patch-cm.def.yaml │ │ │ ├── patch-xdbautomationworker.def.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-tenant-service-connection-string.txt │ └── 9.0 │ │ └── ltsc2022 │ │ └── overrides │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cd.def.yaml │ │ ├── patch-cm.def.yaml │ │ ├── patch-xdbautomationworker.def.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── sitecore-tenant-service-connection-string.txt ├── expedge │ ├── 18.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-experienceedge-authority.txt │ │ │ │ ├── sitecore-experienceedge-cdnmediaprefix.txt │ │ │ │ ├── sitecore-experienceedge-cdnuri.txt │ │ │ │ └── sitecore-experienceedge-deliveryendpoint.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-experienceedge-authority.txt │ │ │ ├── sitecore-experienceedge-cdnmediaprefix.txt │ │ │ ├── sitecore-experienceedge-cdnuri.txt │ │ │ └── sitecore-experienceedge-deliveryendpoint.txt │ ├── 19.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ ├── xm1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.xe.yaml │ │ │ │ └── secrets │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── sitecore-experienceedge-authority.txt │ │ │ │ │ ├── sitecore-experienceedge-cdnmediaprefix.txt │ │ │ │ │ ├── sitecore-experienceedge-cdnuri.txt │ │ │ │ │ └── sitecore-experienceedge-deliveryendpoint.txt │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.xe.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-experienceedge-authority.txt │ │ │ │ ├── sitecore-experienceedge-cdnmediaprefix.txt │ │ │ │ ├── sitecore-experienceedge-cdnuri.txt │ │ │ │ └── sitecore-experienceedge-deliveryendpoint.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-experienceedge-authority.txt │ │ │ │ ├── sitecore-experienceedge-cdnmediaprefix.txt │ │ │ │ ├── sitecore-experienceedge-cdnuri.txt │ │ │ │ └── sitecore-experienceedge-deliveryendpoint.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-experienceedge-authority.txt │ │ │ ├── sitecore-experienceedge-cdnmediaprefix.txt │ │ │ ├── sitecore-experienceedge-cdnuri.txt │ │ │ └── sitecore-experienceedge-deliveryendpoint.txt │ ├── 20.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ ├── xm1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.xe.yaml │ │ │ │ └── secrets │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.xe.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-experienceedge-connection.txt │ ├── 21.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ ├── xm1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.xe.yaml │ │ │ │ └── secrets │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.xe.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-experienceedge-connection.txt │ └── 22.0 │ │ ├── ltsc2019 │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-experienceedge-connection.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.xe.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-experienceedge-connection.txt │ │ └── ltsc2022 │ │ └── overrides │ │ ├── xm1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.xe.yaml │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-experienceedge-connection.txt │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.xe.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── sitecore-experienceedge-connection.txt ├── horizon │ ├── 10.1 │ │ └── ltsc2019 │ │ │ ├── horizon │ │ │ ├── hrz.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-hrz-enable-dam.yaml │ │ │ └── patch-hrz-enable-sxa.yaml │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── ingress │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-ingress.yaml │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-id.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── tls │ │ │ │ └── global-hrz │ │ │ │ └── readme │ │ │ └── xp1 │ │ │ ├── ingress │ │ │ ├── kustomization.yaml │ │ │ └── patch-ingress.yaml │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-id.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── tls │ │ │ └── global-hrz │ │ │ └── readme │ └── 10.2 │ │ ├── ltsc2019 │ │ ├── horizon │ │ │ ├── hrz.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-hrz-enable-dam.yaml │ │ │ └── patch-hrz-enable-sxa.yaml │ │ └── overlays │ │ │ ├── xm1 │ │ │ ├── ingress │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-ingress.yaml │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-id.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── tls │ │ │ │ └── global-hrz │ │ │ │ └── readme │ │ │ └── xp1 │ │ │ ├── ingress │ │ │ ├── kustomization.yaml │ │ │ └── patch-ingress.yaml │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-id.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── tls │ │ │ └── global-hrz │ │ │ └── readme │ │ └── ltsc2022 │ │ ├── horizon │ │ ├── hrz.yaml │ │ ├── kustomization.yaml │ │ ├── patch-hrz-enable-dam.yaml │ │ └── patch-hrz-enable-sxa.yaml │ │ └── overlays │ │ ├── xm1 │ │ ├── ingress │ │ │ ├── kustomization.yaml │ │ │ └── patch-ingress.yaml │ │ ├── init │ │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ ├── patch-id.yaml │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── tls │ │ │ └── global-hrz │ │ │ └── readme │ │ └── xp1 │ │ ├── ingress │ │ ├── kustomization.yaml │ │ └── patch-ingress.yaml │ │ ├── init │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ ├── patch-id.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── tls │ │ └── global-hrz │ │ └── readme ├── publishing │ ├── 10.1 │ │ └── ltsc2019 │ │ │ ├── overrides │ │ │ ├── xm1 │ │ │ │ ├── init │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── xp1 │ │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── sps │ │ │ ├── kustomization.yaml │ │ │ ├── patch-sps.yaml │ │ │ └── sps.yaml │ ├── 10.2 │ │ ├── ltsc2019 │ │ │ ├── overrides │ │ │ │ ├── xm1 │ │ │ │ │ ├── init │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── patch-cm.sps.yaml │ │ │ │ └── xp1 │ │ │ │ │ ├── init │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── sps │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-sps.yaml │ │ │ │ └── sps.yaml │ │ └── ltsc2022 │ │ │ ├── overrides │ │ │ ├── xm1 │ │ │ │ ├── init │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── xp1 │ │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── sps │ │ │ ├── kustomization.yaml │ │ │ ├── patch-sps.yaml │ │ │ └── sps.yaml │ ├── 10.3 │ │ ├── ltsc2019 │ │ │ ├── overrides │ │ │ │ ├── xm1 │ │ │ │ │ ├── init │ │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── patch-cm.sps.yaml │ │ │ │ └── xp1 │ │ │ │ │ ├── init │ │ │ │ │ └── kustomization.yaml │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── sps │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-sps.yaml │ │ │ │ └── sps.yaml │ │ └── ltsc2022 │ │ │ ├── overrides │ │ │ ├── xm1 │ │ │ │ ├── init │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── xp1 │ │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── sps │ │ │ ├── kustomization.yaml │ │ │ ├── patch-sps.yaml │ │ │ └── sps.yaml │ └── 10.4 │ │ ├── ltsc2019 │ │ ├── overrides │ │ │ ├── xm1 │ │ │ │ ├── init │ │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ │ └── xp1 │ │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── patch-cm.sps.yaml │ │ └── sps │ │ │ ├── kustomization.yaml │ │ │ ├── patch-sps.yaml │ │ │ └── sps.yaml │ │ └── ltsc2022 │ │ ├── overrides │ │ ├── xm1 │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ └── patch-cm.sps.yaml │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ └── patch-cm.sps.yaml │ │ └── sps │ │ ├── kustomization.yaml │ │ ├── patch-sps.yaml │ │ └── sps.yaml ├── scse │ └── 1.0 │ │ ├── ltsc2019 │ │ └── overlays │ │ │ └── Sitecore.GP.Standard │ │ │ └── kustomization.yaml │ │ └── ltsc2022 │ │ └── overlays │ │ └── Sitecore.GP.Standard │ │ └── kustomization.yaml ├── sfcrm │ ├── 6.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-crm-connection-string.txt │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-crm-connection-string.txt │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-salesforce-crm-connection-string.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-crm-connection-string.txt │ └── 9.0 │ │ └── ltsc2022 │ │ └── overrides │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── sitecore-salesforce-crm-connection-string.txt ├── sfmcbde-ts │ ├── 6.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-ts.yaml │ │ │ ├── patch-xdbautomationworker.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-tenant-connection-string.txt │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-ts.yaml │ │ │ ├── patch-xdbautomationworker.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-tenant-service-connection-string.txt │ │ │ ├── tenant-service-sfmcjourney-executeurl.txt │ │ │ └── tenant-service-xdbreferencedata-client.txt │ └── 8.0 │ │ ├── ltsc2019 │ │ └── overrides │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ ├── patch-ts.yaml │ │ │ ├── patch-xdbautomationworker.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-tenant-connection-string.txt │ │ └── ltsc2022 │ │ └── overrides │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ ├── patch-ts.yaml │ │ ├── patch-xdbautomationworker.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── sitecore-tenant-connection-string.txt ├── sfmcbde │ ├── 6.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-bde-connection-string.txt │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-bde-connection-string.txt │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-salesforce-bde-connection-string.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-bde-connection-string.txt │ └── 9.0 │ │ └── ltsc2022 │ │ └── overrides │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── sitecore-salesforce-bde-connection-string.txt ├── sfmcce │ ├── 6.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── init │ │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ │ │ └── xp1 │ │ │ ├── init │ │ │ └── kustomization.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ ├── 7.0 │ │ └── ltsc2019 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ ├── 8.0 │ │ ├── ltsc2019 │ │ │ └── overrides │ │ │ │ ├── xm1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.yaml │ │ │ │ └── secrets │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ │ │ │ └── xp1 │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── patch-cm.yaml │ │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ │ └── ltsc2022 │ │ │ └── overrides │ │ │ ├── xm1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ │ │ └── xp1 │ │ │ ├── kustomization.yaml │ │ │ ├── patch-cm.yaml │ │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ └── 9.0 │ │ └── ltsc2022 │ │ └── overrides │ │ ├── xm1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ └── sitecore-salesforce-content-exchange-connection-string.txt │ │ └── xp1 │ │ ├── kustomization.yaml │ │ ├── patch-cm.yaml │ │ └── secrets │ │ ├── kustomization.yaml │ │ └── sitecore-salesforce-content-exchange-connection-string.txt └── sxp │ ├── 10.0 │ └── ltsc2019 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── configuration │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ └── xp1 │ │ │ ├── configuration │ │ │ ├── is-always-encrypted.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ ├── xm1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── external │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ └── ingress.yaml │ │ ├── init │ │ │ ├── SearchStax │ │ │ │ └── solr-init.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ └── secrets │ │ │ ├── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ └── sitecore-searchstax-deployment-uid.txt │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ └── xp1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── cortexprocessing.yaml │ │ ├── cortexprocessingworker.yaml │ │ ├── cortexreporting.yaml │ │ ├── external │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ └── ingress.yaml │ │ ├── init │ │ ├── SearchStax │ │ │ └── solr-init.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ │ ├── prc.yaml │ │ ├── rep.yaml │ │ ├── secrets │ │ ├── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ └── sitecore-searchstax-deployment-uid.txt │ │ ├── kustomization.yaml │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-exm-master-database-password.txt │ │ ├── sitecore-exm-master-database-username.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-marketing-automation-database-password.txt │ │ ├── sitecore-marketing-automation-database-username.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-messaging-database-password.txt │ │ ├── sitecore-messaging-database-username.txt │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ ├── sitecore-processing-pools-database-password.txt │ │ ├── sitecore-processing-pools-database-username.txt │ │ ├── sitecore-processing-tasks-database-password.txt │ │ ├── sitecore-processing-tasks-database-username.txt │ │ ├── sitecore-reference-data-database-password.txt │ │ ├── sitecore-reference-data-database-username.txt │ │ ├── sitecore-reporting-database-password.txt │ │ ├── sitecore-reporting-database-username.txt │ │ ├── sitecore-reportingapikey.txt │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ ├── sitecore-web-database-username.txt │ │ └── tls │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ ├── xdbautomation.yaml │ │ ├── xdbautomationrpt.yaml │ │ ├── xdbautomationworker.yaml │ │ ├── xdbcollection.yaml │ │ ├── xdbrefdata.yaml │ │ ├── xdbsearch.yaml │ │ └── xdbsearchworker.yaml │ ├── 10.1 │ └── ltsc2019 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── configuration │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ └── xp1 │ │ │ ├── configuration │ │ │ ├── is-always-encrypted.txt │ │ │ ├── processing-engine-tasks-database-user-name.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ ├── xm1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── external │ │ │ ├── kustomization.yaml │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ ├── ingress.yaml │ │ │ └── kustomization.yaml │ │ ├── init │ │ │ ├── kustomization.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ ├── kustomization.yaml │ │ ├── overlays │ │ │ └── init │ │ │ │ └── SearchStax │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ └── solr-init.yaml │ │ └── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ └── xp1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── cortexprocessing.yaml │ │ ├── cortexprocessingworker.yaml │ │ ├── cortexreporting.yaml │ │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ │ ├── kustomization.yaml │ │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ │ ├── prc.yaml │ │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-exm-master-database-password.txt │ │ ├── sitecore-exm-master-database-username.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-marketing-automation-database-password.txt │ │ ├── sitecore-marketing-automation-database-username.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ ├── sitecore-messaging-database-password.txt │ │ ├── sitecore-messaging-database-username.txt │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ ├── sitecore-processing-pools-database-password.txt │ │ ├── sitecore-processing-pools-database-username.txt │ │ ├── sitecore-processing-tasks-database-password.txt │ │ ├── sitecore-processing-tasks-database-username.txt │ │ ├── sitecore-reference-data-database-password.txt │ │ ├── sitecore-reference-data-database-username.txt │ │ ├── sitecore-reporting-database-password.txt │ │ ├── sitecore-reporting-database-username.txt │ │ ├── sitecore-reportingapikey.txt │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ ├── sitecore-web-database-username.txt │ │ └── tls │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ ├── volumes │ │ ├── azurefile │ │ │ └── submit-queue.yaml │ │ └── hostpath │ │ │ └── submit-queue.yaml │ │ ├── xdbautomation.yaml │ │ ├── xdbautomationrpt.yaml │ │ ├── xdbautomationworker.yaml │ │ ├── xdbcollection.yaml │ │ ├── xdbrefdata.yaml │ │ ├── xdbsearch.yaml │ │ └── xdbsearchworker.yaml │ ├── 10.2 │ ├── ltsc2019 │ │ ├── upgrade │ │ │ ├── xm1 │ │ │ │ ├── configuration │ │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ │ ├── sitecore-license.txt │ │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ │ ├── sql-password.txt │ │ │ │ │ ├── sql-server.txt │ │ │ │ │ └── sql-user-name.txt │ │ │ │ ├── kustomization.yaml │ │ │ │ └── mssql-upgrade.yaml │ │ │ └── xp1 │ │ │ │ ├── configuration │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ ├── is-always-encrypted.txt │ │ │ │ ├── processing-engine-tasks-database-user-name.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ │ ├── kustomization.yaml │ │ │ │ └── mssql-upgrade.yaml │ │ ├── xm1 │ │ │ ├── cd.yaml │ │ │ ├── cm.yaml │ │ │ ├── configmaps │ │ │ │ ├── cd-hostname │ │ │ │ ├── cm-hostname │ │ │ │ ├── id-hostname │ │ │ │ └── kustomization.yaml │ │ │ ├── external │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── mssql.yaml │ │ │ │ ├── redis.yaml │ │ │ │ └── solr.yaml │ │ │ ├── id.yaml │ │ │ ├── ingress-nginx │ │ │ │ ├── configuration.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── init │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── mssql-init.yaml │ │ │ │ └── solr-init.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── overlays │ │ │ │ └── init │ │ │ │ │ └── SearchStax │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ │ └── solr-init.yaml │ │ │ ├── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-adminpassword.txt │ │ │ │ ├── sitecore-core-database-password.txt │ │ │ │ ├── sitecore-core-database-username.txt │ │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ │ ├── sitecore-databasepassword.txt │ │ │ │ ├── sitecore-databaseservername.txt │ │ │ │ ├── sitecore-databaseusername.txt │ │ │ │ ├── sitecore-forms-database-password.txt │ │ │ │ ├── sitecore-forms-database-username.txt │ │ │ │ ├── sitecore-identitycertificate.txt │ │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ │ ├── sitecore-identitysecret.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sitecore-master-database-password.txt │ │ │ │ ├── sitecore-master-database-username.txt │ │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ │ ├── sitecore-web-database-password.txt │ │ │ │ ├── sitecore-web-database-username.txt │ │ │ │ └── tls │ │ │ │ │ ├── global-cd │ │ │ │ │ └── readme │ │ │ │ │ ├── global-cm │ │ │ │ │ └── readme │ │ │ │ │ └── global-id │ │ │ │ │ └── readme │ │ │ └── volumes │ │ │ │ ├── azurefile │ │ │ │ └── logs.yaml │ │ │ │ └── hostpath │ │ │ │ └── logs.yaml │ │ └── xp1 │ │ │ ├── cd.yaml │ │ │ ├── cm.yaml │ │ │ ├── configmaps │ │ │ ├── cd-hostname │ │ │ ├── cm-hostname │ │ │ ├── id-hostname │ │ │ └── kustomization.yaml │ │ │ ├── cortexprocessing.yaml │ │ │ ├── cortexprocessingworker.yaml │ │ │ ├── cortexreporting.yaml │ │ │ ├── external │ │ │ ├── kustomization.yaml │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ │ ├── id.yaml │ │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ ├── ingress.yaml │ │ │ └── kustomization.yaml │ │ │ ├── init │ │ │ ├── kustomization.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── overlays │ │ │ └── init │ │ │ │ └── SearchStax │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ └── solr-init.yaml │ │ │ ├── prc.yaml │ │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-exm-master-database-password.txt │ │ │ ├── sitecore-exm-master-database-username.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-marketing-automation-database-password.txt │ │ │ ├── sitecore-marketing-automation-database-username.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-messaging-database-password.txt │ │ │ ├── sitecore-messaging-database-username.txt │ │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ │ ├── sitecore-processing-pools-database-password.txt │ │ │ ├── sitecore-processing-pools-database-username.txt │ │ │ ├── sitecore-processing-tasks-database-password.txt │ │ │ ├── sitecore-processing-tasks-database-username.txt │ │ │ ├── sitecore-reference-data-database-password.txt │ │ │ ├── sitecore-reference-data-database-username.txt │ │ │ ├── sitecore-reporting-database-password.txt │ │ │ ├── sitecore-reporting-database-username.txt │ │ │ ├── sitecore-reportingapikey.txt │ │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ │ ├── global-cd │ │ │ │ └── readme │ │ │ │ ├── global-cm │ │ │ │ └── readme │ │ │ │ └── global-id │ │ │ │ └── readme │ │ │ ├── volumes │ │ │ ├── azurefile │ │ │ │ ├── logs.yaml │ │ │ │ └── submit-queue.yaml │ │ │ └── hostpath │ │ │ │ ├── logs.yaml │ │ │ │ └── submit-queue.yaml │ │ │ ├── xdbautomation.yaml │ │ │ ├── xdbautomationrpt.yaml │ │ │ ├── xdbautomationworker.yaml │ │ │ ├── xdbcollection.yaml │ │ │ ├── xdbrefdata.yaml │ │ │ ├── xdbsearch.yaml │ │ │ └── xdbsearchworker.yaml │ └── ltsc2022 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── configuration │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ └── xp1 │ │ │ ├── configuration │ │ │ ├── database-upgrade-from-version.txt │ │ │ ├── database-upgrade-to-version.txt │ │ │ ├── is-always-encrypted.txt │ │ │ ├── processing-engine-tasks-database-user-name.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ ├── xm1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── configmaps │ │ │ ├── cd-hostname │ │ │ ├── cm-hostname │ │ │ ├── id-hostname │ │ │ └── kustomization.yaml │ │ ├── external │ │ │ ├── kustomization.yaml │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ ├── ingress.yaml │ │ │ └── kustomization.yaml │ │ ├── init │ │ │ ├── kustomization.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ ├── kustomization.yaml │ │ ├── overlays │ │ │ └── init │ │ │ │ └── SearchStax │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ └── solr-init.yaml │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ │ ├── global-cd │ │ │ │ └── readme │ │ │ │ ├── global-cm │ │ │ │ └── readme │ │ │ │ └── global-id │ │ │ │ └── readme │ │ └── volumes │ │ │ ├── azurefile │ │ │ └── logs.yaml │ │ │ └── hostpath │ │ │ └── logs.yaml │ │ └── xp1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── configmaps │ │ ├── cd-hostname │ │ ├── cm-hostname │ │ ├── id-hostname │ │ └── kustomization.yaml │ │ ├── cortexprocessing.yaml │ │ ├── cortexprocessingworker.yaml │ │ ├── cortexreporting.yaml │ │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ │ ├── kustomization.yaml │ │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ │ ├── prc.yaml │ │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-exm-master-database-password.txt │ │ ├── sitecore-exm-master-database-username.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-marketing-automation-database-password.txt │ │ ├── sitecore-marketing-automation-database-username.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ ├── sitecore-messaging-database-password.txt │ │ ├── sitecore-messaging-database-username.txt │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ ├── sitecore-processing-pools-database-password.txt │ │ ├── sitecore-processing-pools-database-username.txt │ │ ├── sitecore-processing-tasks-database-password.txt │ │ ├── sitecore-processing-tasks-database-username.txt │ │ ├── sitecore-reference-data-database-password.txt │ │ ├── sitecore-reference-data-database-username.txt │ │ ├── sitecore-reporting-database-password.txt │ │ ├── sitecore-reporting-database-username.txt │ │ ├── sitecore-reportingapikey.txt │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ ├── sitecore-web-database-username.txt │ │ └── tls │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ ├── volumes │ │ ├── azurefile │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ └── hostpath │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ ├── xdbautomation.yaml │ │ ├── xdbautomationrpt.yaml │ │ ├── xdbautomationworker.yaml │ │ ├── xdbcollection.yaml │ │ ├── xdbrefdata.yaml │ │ ├── xdbsearch.yaml │ │ └── xdbsearchworker.yaml │ ├── 10.3 │ ├── ltsc2019 │ │ ├── upgrade │ │ │ ├── xm1 │ │ │ │ ├── configuration │ │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ │ ├── sitecore-license.txt │ │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ │ ├── sql-password.txt │ │ │ │ │ ├── sql-server.txt │ │ │ │ │ └── sql-user-name.txt │ │ │ │ ├── kustomization.yaml │ │ │ │ └── mssql-upgrade.yaml │ │ │ └── xp1 │ │ │ │ ├── configuration │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ ├── is-always-encrypted.txt │ │ │ │ ├── processing-engine-tasks-database-user-name.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ │ ├── kustomization.yaml │ │ │ │ └── mssql-upgrade.yaml │ │ ├── xm1 │ │ │ ├── cd.yaml │ │ │ ├── cm.yaml │ │ │ ├── configmaps │ │ │ │ ├── cd-hostname │ │ │ │ ├── cm-hostname │ │ │ │ ├── id-hostname │ │ │ │ └── kustomization.yaml │ │ │ ├── external │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── mssql.yaml │ │ │ │ ├── redis.yaml │ │ │ │ └── solr.yaml │ │ │ ├── id.yaml │ │ │ ├── ingress-nginx │ │ │ │ ├── configuration.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── init │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── mssql-init.yaml │ │ │ │ └── solr-init.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── overlays │ │ │ │ └── init │ │ │ │ │ └── SearchStax │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ │ └── solr-init.yaml │ │ │ ├── secrets │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-adminpassword.txt │ │ │ │ ├── sitecore-core-database-password.txt │ │ │ │ ├── sitecore-core-database-username.txt │ │ │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ │ ├── sitecore-databasepassword.txt │ │ │ │ ├── sitecore-databaseprefix.txt │ │ │ │ ├── sitecore-databaseservername.txt │ │ │ │ ├── sitecore-databaseusername.txt │ │ │ │ ├── sitecore-forms-database-password.txt │ │ │ │ ├── sitecore-forms-database-username.txt │ │ │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ │ │ ├── sitecore-identitycertificate.txt │ │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ │ ├── sitecore-identitysecret.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sitecore-log-level-value.txt │ │ │ │ ├── sitecore-master-database-password.txt │ │ │ │ ├── sitecore-master-database-username.txt │ │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ │ ├── sitecore-web-database-password.txt │ │ │ │ ├── sitecore-web-database-username.txt │ │ │ │ └── tls │ │ │ │ │ ├── global-cd │ │ │ │ │ └── readme │ │ │ │ │ ├── global-cm │ │ │ │ │ └── readme │ │ │ │ │ └── global-id │ │ │ │ │ └── readme │ │ │ └── volumes │ │ │ │ ├── azurefile │ │ │ │ ├── device-detection.yaml │ │ │ │ └── logs.yaml │ │ │ │ └── hostpath │ │ │ │ ├── device-detection.yaml │ │ │ │ └── logs.yaml │ │ └── xp1 │ │ │ ├── cd.yaml │ │ │ ├── cm.yaml │ │ │ ├── configmaps │ │ │ ├── cd-hostname │ │ │ ├── cm-hostname │ │ │ ├── id-hostname │ │ │ └── kustomization.yaml │ │ │ ├── cortexprocessing.yaml │ │ │ ├── cortexprocessingworker.yaml │ │ │ ├── cortexreporting.yaml │ │ │ ├── external │ │ │ ├── kustomization.yaml │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ │ ├── id.yaml │ │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ ├── ingress.yaml │ │ │ └── kustomization.yaml │ │ │ ├── init │ │ │ ├── kustomization.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── overlays │ │ │ └── init │ │ │ │ └── SearchStax │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ └── solr-init.yaml │ │ │ ├── prc.yaml │ │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseprefix.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-exm-master-database-password.txt │ │ │ ├── sitecore-exm-master-database-username.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-log-level-value.txt │ │ │ ├── sitecore-marketing-automation-database-password.txt │ │ │ ├── sitecore-marketing-automation-database-username.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-messaging-database-password.txt │ │ │ ├── sitecore-messaging-database-username.txt │ │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ │ ├── sitecore-processing-pools-database-password.txt │ │ │ ├── sitecore-processing-pools-database-username.txt │ │ │ ├── sitecore-processing-tasks-database-password.txt │ │ │ ├── sitecore-processing-tasks-database-username.txt │ │ │ ├── sitecore-reference-data-database-password.txt │ │ │ ├── sitecore-reference-data-database-username.txt │ │ │ ├── sitecore-reporting-database-password.txt │ │ │ ├── sitecore-reporting-database-username.txt │ │ │ ├── sitecore-reportingapikey.txt │ │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ │ ├── global-cd │ │ │ │ └── readme │ │ │ │ ├── global-cm │ │ │ │ └── readme │ │ │ │ └── global-id │ │ │ │ └── readme │ │ │ ├── volumes │ │ │ ├── azurefile │ │ │ │ ├── device-detection.yaml │ │ │ │ ├── logs.yaml │ │ │ │ └── submit-queue.yaml │ │ │ └── hostpath │ │ │ │ ├── device-detection.yaml │ │ │ │ ├── logs.yaml │ │ │ │ └── submit-queue.yaml │ │ │ ├── xdbautomation.yaml │ │ │ ├── xdbautomationrpt.yaml │ │ │ ├── xdbautomationworker.yaml │ │ │ ├── xdbcollection.yaml │ │ │ ├── xdbrefdata.yaml │ │ │ ├── xdbsearch.yaml │ │ │ └── xdbsearchworker.yaml │ └── ltsc2022 │ │ ├── upgrade │ │ ├── xm1 │ │ │ ├── configuration │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ └── xp1 │ │ │ ├── configuration │ │ │ ├── database-upgrade-from-version.txt │ │ │ ├── database-upgrade-to-version.txt │ │ │ ├── is-always-encrypted.txt │ │ │ ├── processing-engine-tasks-database-user-name.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ ├── xm1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── configmaps │ │ │ ├── cd-hostname │ │ │ ├── cm-hostname │ │ │ ├── id-hostname │ │ │ └── kustomization.yaml │ │ ├── external │ │ │ ├── kustomization.yaml │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ ├── ingress.yaml │ │ │ └── kustomization.yaml │ │ ├── init │ │ │ ├── kustomization.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ ├── kustomization.yaml │ │ ├── overlays │ │ │ └── init │ │ │ │ └── SearchStax │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ └── solr-init.yaml │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseprefix.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-log-level-value.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ │ ├── global-cd │ │ │ │ └── readme │ │ │ │ ├── global-cm │ │ │ │ └── readme │ │ │ │ └── global-id │ │ │ │ └── readme │ │ └── volumes │ │ │ ├── azurefile │ │ │ ├── device-detection.yaml │ │ │ └── logs.yaml │ │ │ └── hostpath │ │ │ ├── device-detection.yaml │ │ │ └── logs.yaml │ │ └── xp1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── configmaps │ │ ├── cd-hostname │ │ ├── cm-hostname │ │ ├── id-hostname │ │ └── kustomization.yaml │ │ ├── cortexprocessing.yaml │ │ ├── cortexprocessingworker.yaml │ │ ├── cortexreporting.yaml │ │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ │ ├── kustomization.yaml │ │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ │ ├── prc.yaml │ │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseprefix.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-exm-master-database-password.txt │ │ ├── sitecore-exm-master-database-username.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-log-level-value.txt │ │ ├── sitecore-marketing-automation-database-password.txt │ │ ├── sitecore-marketing-automation-database-username.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ ├── sitecore-messaging-database-password.txt │ │ ├── sitecore-messaging-database-username.txt │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ ├── sitecore-processing-pools-database-password.txt │ │ ├── sitecore-processing-pools-database-username.txt │ │ ├── sitecore-processing-tasks-database-password.txt │ │ ├── sitecore-processing-tasks-database-username.txt │ │ ├── sitecore-reference-data-database-password.txt │ │ ├── sitecore-reference-data-database-username.txt │ │ ├── sitecore-reporting-database-password.txt │ │ ├── sitecore-reporting-database-username.txt │ │ ├── sitecore-reportingapikey.txt │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ ├── sitecore-web-database-username.txt │ │ └── tls │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ ├── volumes │ │ ├── azurefile │ │ │ ├── device-detection.yaml │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ └── hostpath │ │ │ ├── device-detection.yaml │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ ├── xdbautomation.yaml │ │ ├── xdbautomationrpt.yaml │ │ ├── xdbautomationworker.yaml │ │ ├── xdbcollection.yaml │ │ ├── xdbrefdata.yaml │ │ ├── xdbsearch.yaml │ │ └── xdbsearchworker.yaml │ └── 10.4 │ ├── ltsc2019 │ ├── upgrade │ │ ├── xm1 │ │ │ ├── configuration │ │ │ │ ├── database-upgrade-from-version.txt │ │ │ │ ├── database-upgrade-to-version.txt │ │ │ │ ├── sitecore-license.txt │ │ │ │ ├── sql-database-prefix.txt │ │ │ │ ├── sql-password.txt │ │ │ │ ├── sql-server.txt │ │ │ │ └── sql-user-name.txt │ │ │ ├── k8s-init-upgrade.ps1 │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ │ └── xp1 │ │ │ ├── configuration │ │ │ ├── database-upgrade-from-version.txt │ │ │ ├── database-upgrade-to-version.txt │ │ │ ├── is-always-encrypted.txt │ │ │ ├── processing-engine-tasks-database-user-name.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ │ ├── k8s-init-upgrade.ps1 │ │ │ ├── kustomization.yaml │ │ │ └── mssql-upgrade.yaml │ ├── xm1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── configmaps │ │ │ ├── cd-hostname │ │ │ ├── cm-hostname │ │ │ ├── id-hostname │ │ │ └── kustomization.yaml │ │ ├── external │ │ │ ├── kustomization.yaml │ │ │ ├── mssql.yaml │ │ │ ├── redis.yaml │ │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ │ ├── configuration.yaml │ │ │ ├── ingress.yaml │ │ │ └── kustomization.yaml │ │ ├── init │ │ │ ├── kustomization.yaml │ │ │ ├── mssql-init.yaml │ │ │ └── solr-init.yaml │ │ ├── k8s-init.ps1 │ │ ├── kustomization.yaml │ │ ├── overlays │ │ │ └── init │ │ │ │ └── SearchStax │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ │ └── solr-init.yaml │ │ ├── secrets │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseprefix.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-log-level-value.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ ├── sitecore-web-database-username.txt │ │ │ └── tls │ │ │ │ ├── global-authority │ │ │ │ └── readme │ │ │ │ ├── global-cd │ │ │ │ └── readme │ │ │ │ ├── global-cm │ │ │ │ └── readme │ │ │ │ └── global-id │ │ │ │ └── readme │ │ └── volumes │ │ │ ├── azurefile │ │ │ ├── device-detection.yaml │ │ │ └── logs.yaml │ │ │ └── hostpath │ │ │ ├── device-detection.yaml │ │ │ └── logs.yaml │ └── xp1 │ │ ├── cd.yaml │ │ ├── cm.yaml │ │ ├── configmaps │ │ ├── cd-hostname │ │ ├── cm-hostname │ │ ├── id-hostname │ │ └── kustomization.yaml │ │ ├── cortexprocessing.yaml │ │ ├── cortexprocessingworker.yaml │ │ ├── cortexreporting.yaml │ │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ │ ├── id.yaml │ │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ │ ├── k8s-init.ps1 │ │ ├── kustomization.yaml │ │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ │ ├── prc.yaml │ │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseprefix.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-exm-master-database-password.txt │ │ ├── sitecore-exm-master-database-username.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-log-level-value.txt │ │ ├── sitecore-marketing-automation-database-password.txt │ │ ├── sitecore-marketing-automation-database-username.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ ├── sitecore-messaging-database-password.txt │ │ ├── sitecore-messaging-database-username.txt │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ ├── sitecore-processing-pools-database-password.txt │ │ ├── sitecore-processing-pools-database-username.txt │ │ ├── sitecore-processing-tasks-database-password.txt │ │ ├── sitecore-processing-tasks-database-username.txt │ │ ├── sitecore-reference-data-database-password.txt │ │ ├── sitecore-reference-data-database-username.txt │ │ ├── sitecore-reporting-database-password.txt │ │ ├── sitecore-reporting-database-username.txt │ │ ├── sitecore-reportingapikey.txt │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ ├── sitecore-web-database-username.txt │ │ └── tls │ │ │ ├── global-authority │ │ │ └── readme │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ │ ├── volumes │ │ ├── azurefile │ │ │ ├── device-detection.yaml │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ └── hostpath │ │ │ ├── device-detection.yaml │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ ├── xdbautomation.yaml │ │ ├── xdbautomationrpt.yaml │ │ ├── xdbautomationworker.yaml │ │ ├── xdbcollection.yaml │ │ ├── xdbrefdata.yaml │ │ ├── xdbsearch.yaml │ │ └── xdbsearchworker.yaml │ └── ltsc2022 │ ├── upgrade │ ├── xm1 │ │ ├── configuration │ │ │ ├── database-upgrade-from-version.txt │ │ │ ├── database-upgrade-to-version.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ ├── k8s-init-upgrade.ps1 │ │ ├── kustomization.yaml │ │ └── mssql-upgrade.yaml │ └── xp1 │ │ ├── configuration │ │ ├── database-upgrade-from-version.txt │ │ ├── database-upgrade-to-version.txt │ │ ├── is-always-encrypted.txt │ │ ├── processing-engine-tasks-database-user-name.txt │ │ ├── sitecore-license.txt │ │ ├── sql-database-prefix.txt │ │ ├── sql-password.txt │ │ ├── sql-server.txt │ │ └── sql-user-name.txt │ │ ├── k8s-init-upgrade.ps1 │ │ ├── kustomization.yaml │ │ └── mssql-upgrade.yaml │ ├── xm1 │ ├── cd.yaml │ ├── cm.yaml │ ├── configmaps │ │ ├── cd-hostname │ │ ├── cm-hostname │ │ ├── id-hostname │ │ └── kustomization.yaml │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ ├── id.yaml │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ ├── k8s-init.ps1 │ ├── kustomization.yaml │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseprefix.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-log-level-value.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ ├── sitecore-web-database-username.txt │ │ └── tls │ │ │ ├── global-authority │ │ │ └── readme │ │ │ ├── global-cd │ │ │ └── readme │ │ │ ├── global-cm │ │ │ └── readme │ │ │ └── global-id │ │ │ └── readme │ └── volumes │ │ ├── azurefile │ │ ├── device-detection.yaml │ │ └── logs.yaml │ │ └── hostpath │ │ ├── device-detection.yaml │ │ └── logs.yaml │ └── xp1 │ ├── cd.yaml │ ├── cm.yaml │ ├── configmaps │ ├── cd-hostname │ ├── cm-hostname │ ├── id-hostname │ └── kustomization.yaml │ ├── cortexprocessing.yaml │ ├── cortexprocessingworker.yaml │ ├── cortexreporting.yaml │ ├── external │ ├── kustomization.yaml │ ├── mssql.yaml │ ├── redis.yaml │ └── solr.yaml │ ├── id.yaml │ ├── ingress-nginx │ ├── configuration.yaml │ ├── ingress.yaml │ └── kustomization.yaml │ ├── init │ ├── kustomization.yaml │ ├── mssql-init.yaml │ └── solr-init.yaml │ ├── k8s-init.ps1 │ ├── kustomization.yaml │ ├── overlays │ └── init │ │ └── SearchStax │ │ ├── kustomization.yaml │ │ ├── sitecore-searchstax-account-name.txt │ │ ├── sitecore-searchstax-apikey.txt │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ └── solr-init.yaml │ ├── prc.yaml │ ├── secrets │ ├── kustomization.yaml │ ├── sitecore-adminpassword.txt │ ├── sitecore-collection-shardmapmanager-database-password.txt │ ├── sitecore-collection-shardmapmanager-database-username.txt │ ├── sitecore-core-database-password.txt │ ├── sitecore-core-database-username.txt │ ├── sitecore-custom-database-prefix-update-from.txt │ ├── sitecore-database-elastic-pool-name.txt │ ├── sitecore-databasepassword.txt │ ├── sitecore-databaseprefix.txt │ ├── sitecore-databaseservername.txt │ ├── sitecore-databaseusername.txt │ ├── sitecore-exm-master-database-password.txt │ ├── sitecore-exm-master-database-username.txt │ ├── sitecore-forms-database-password.txt │ ├── sitecore-forms-database-username.txt │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ ├── sitecore-identitycertificate.txt │ ├── sitecore-identitycertificatepassword.txt │ ├── sitecore-identitysecret.txt │ ├── sitecore-license.txt │ ├── sitecore-log-level-value.txt │ ├── sitecore-marketing-automation-database-password.txt │ ├── sitecore-marketing-automation-database-username.txt │ ├── sitecore-master-database-password.txt │ ├── sitecore-master-database-username.txt │ ├── sitecore-media-request-protection-shared-secret.txt │ ├── sitecore-messaging-database-password.txt │ ├── sitecore-messaging-database-username.txt │ ├── sitecore-processing-engine-storage-database-password.txt │ ├── sitecore-processing-engine-storage-database-username.txt │ ├── sitecore-processing-engine-tasks-database-password.txt │ ├── sitecore-processing-engine-tasks-database-username.txt │ ├── sitecore-processing-pools-database-password.txt │ ├── sitecore-processing-pools-database-username.txt │ ├── sitecore-processing-tasks-database-password.txt │ ├── sitecore-processing-tasks-database-username.txt │ ├── sitecore-reference-data-database-password.txt │ ├── sitecore-reference-data-database-username.txt │ ├── sitecore-reporting-database-password.txt │ ├── sitecore-reporting-database-username.txt │ ├── sitecore-reportingapikey.txt │ ├── sitecore-solr-connection-string-xdb.txt │ ├── sitecore-solr-connection-string.txt │ ├── sitecore-solr-core-prefix-name.txt │ ├── sitecore-telerikencryptionkey.txt │ ├── sitecore-web-database-password.txt │ ├── sitecore-web-database-username.txt │ └── tls │ │ ├── global-authority │ │ └── readme │ │ ├── global-cd │ │ └── readme │ │ ├── global-cm │ │ └── readme │ │ └── global-id │ │ └── readme │ ├── volumes │ ├── azurefile │ │ ├── device-detection.yaml │ │ ├── logs.yaml │ │ └── submit-queue.yaml │ └── hostpath │ │ ├── device-detection.yaml │ │ ├── logs.yaml │ │ └── submit-queue.yaml │ ├── xdbautomation.yaml │ ├── xdbautomationrpt.yaml │ ├── xdbautomationworker.yaml │ ├── xdbcollection.yaml │ ├── xdbrefdata.yaml │ ├── xdbsearch.yaml │ └── xdbsearchworker.yaml └── sxc ├── 10.0 ├── k8s-commerce-xc1 │ ├── bizfx.yaml │ ├── cd.yaml │ ├── cm.yaml │ ├── cortexprocessing.yaml │ ├── cortexprocessingworker.yaml │ ├── cortexreporting.yaml │ ├── engine-authoring.yaml │ ├── engine-minions.yaml │ ├── engine-ops.yaml │ ├── engine-shops.yaml │ ├── external │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ ├── id.yaml │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ └── ingress.yaml │ ├── init │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ ├── prc.yaml │ ├── rep.yaml │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── tls │ │ │ ├── global-authoring │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-authority │ │ │ │ ├── root.crt │ │ │ │ └── root.key │ │ │ ├── global-bizfx │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-cd │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-cm │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-id │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-minions │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-ops │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ └── global-shops │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ ├── xc │ │ │ ├── commerce-bizfx-currency.txt │ │ │ ├── commerce-bizfx-language.txt │ │ │ ├── commerce-bizfx-shopname.txt │ │ │ ├── commerce-connect-clientid.txt │ │ │ ├── commerce-connect-clientsecret.txt │ │ │ ├── commerce-connect-redis-connection-string.txt │ │ │ ├── commerce-engine-braintreeenvironment.txt │ │ │ ├── commerce-engine-braintreemerchantid.txt │ │ │ ├── commerce-engine-braintreeprivatekey.txt │ │ │ ├── commerce-engine-braintreepublickey.txt │ │ │ ├── commerce-redis-connection-string.txt │ │ │ └── commerce-solr-connection-string.txt │ │ └── xp │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-exm-master-database-password.txt │ │ │ ├── sitecore-exm-master-database-username.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-marketing-automation-database-password.txt │ │ │ ├── sitecore-marketing-automation-database-username.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-messaging-database-password.txt │ │ │ ├── sitecore-messaging-database-username.txt │ │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ │ ├── sitecore-processing-pools-database-password.txt │ │ │ ├── sitecore-processing-pools-database-username.txt │ │ │ ├── sitecore-processing-tasks-database-password.txt │ │ │ ├── sitecore-processing-tasks-database-username.txt │ │ │ ├── sitecore-redis-connection-string.txt │ │ │ ├── sitecore-reference-data-database-password.txt │ │ │ ├── sitecore-reference-data-database-username.txt │ │ │ ├── sitecore-reporting-database-password.txt │ │ │ ├── sitecore-reporting-database-username.txt │ │ │ ├── sitecore-reportingapikey.txt │ │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ └── sitecore-web-database-username.txt │ ├── storage │ │ └── platform-config-storage.yaml │ ├── xdbautomation.yaml │ ├── xdbautomationrpt.yaml │ ├── xdbautomationworker.yaml │ ├── xdbcollection.yaml │ ├── xdbrefdata.yaml │ ├── xdbsearch.yaml │ └── xdbsearchworker.yaml ├── scripts │ ├── CleanContainerCache.ps1 │ ├── ContainerBuild.ps1 │ ├── ContainerTag.ps1 │ ├── FakeLicenseFile.txt │ ├── PrepContainerBuild.ps1 │ ├── ScriptSupport.psm1 │ ├── UpdateEnvCompose.ps1 │ ├── UpdateEnvTag.ps1 │ ├── UpdateK8SYaml.ps1 │ ├── WDPMapping.json │ ├── configltsc2019.json │ └── readme.md ├── xc-common │ ├── .env │ ├── bizfx │ │ ├── Dockerfile │ │ ├── Init.ps1 │ │ ├── InstallPrerequisites.ps1 │ │ └── LogMonitorConfig.json │ ├── cd-cm │ │ └── Dockerfile │ ├── docker-compose.build.yml │ ├── engine │ │ ├── Dockerfile │ │ ├── Healthchecks │ │ │ └── Healthcheck.ps1 │ │ └── LogMonitor │ │ │ └── LogMonitorConfig.json │ ├── id │ │ └── Dockerfile │ ├── mssql │ │ ├── common │ │ │ └── tools │ │ │ │ ├── DeployRoles.ps1 │ │ │ │ └── StartCommerceInit.ps1 │ │ ├── init │ │ │ └── Dockerfile │ │ └── standalone │ │ │ └── Dockerfile │ ├── prc-rep-xdba-xdbc │ │ └── Dockerfile │ ├── solr-init │ │ ├── Dockerfile │ │ ├── tools │ │ │ └── scripts │ │ │ │ ├── New-SolrCore-Commerce.ps1 │ │ │ │ └── Start-Commerce.ps1 │ │ └── xc1 │ │ │ └── cores-commerce.json │ ├── solr │ │ ├── Dockerfile │ │ └── tools │ │ │ └── scripts │ │ │ ├── Add-Commerce-SolrCores.ps1 │ │ │ └── Start-Commerce.ps1 │ └── xdbworkers │ │ └── Dockerfile ├── xc0 │ ├── .env │ ├── cm │ │ ├── Content │ │ │ └── Website │ │ │ │ └── App_Config │ │ │ │ └── Include │ │ │ │ ├── Domains.Shared.config │ │ │ │ └── Y.Commerce.Engine │ │ │ │ └── Y.Sitecore.Commerce.config │ │ ├── Permissions │ │ │ └── AdditionalWriteAllowedFolders.txt │ │ ├── tools │ │ │ ├── CopySecurityDomain.ps1 │ │ │ ├── GrantWritePermission.ps1 │ │ │ └── Invoke-XdtTransformations.ps1 │ │ └── xdts │ │ │ └── Web.config.xdt │ ├── docker-compose.build.yml │ ├── docker-compose.yml │ ├── traefik │ │ ├── certs │ │ │ ├── authoring.localhost.crt │ │ │ ├── authoring.localhost.key │ │ │ ├── bizfx.localhost.crt │ │ │ ├── bizfx.localhost.key │ │ │ ├── minions.localhost.crt │ │ │ ├── minions.localhost.key │ │ │ ├── ops.localhost.crt │ │ │ ├── ops.localhost.key │ │ │ ├── root-ca.crt │ │ │ ├── root-ca.key │ │ │ ├── shops.localhost.crt │ │ │ ├── shops.localhost.key │ │ │ ├── xc0cm.localhost.crt │ │ │ ├── xc0cm.localhost.key │ │ │ ├── xc0id.localhost.crt │ │ │ └── xc0id.localhost.key │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ └── xconnect │ │ └── keep.txt ├── xc1-cxa │ ├── .env │ ├── cd │ │ ├── Content │ │ │ └── Website │ │ │ │ └── App_Config │ │ │ │ └── Include │ │ │ │ └── Sitecore.Commerce.XA.CustomSolrCorePrefixName.config │ │ ├── Dockerfile │ │ └── xdts │ │ │ └── Web.config.xdt │ ├── cm │ │ ├── Content │ │ │ └── Website │ │ │ │ └── App_Config │ │ │ │ └── Include │ │ │ │ └── Sitecore.Commerce.XA.CustomSolrCorePrefixName.config │ │ ├── Dockerfile │ │ └── xdts │ │ │ └── Web.config.xdt │ ├── commerce.build.yml │ ├── docker-compose.build.yml │ ├── docker-compose.yml │ ├── mssql │ │ ├── init │ │ │ └── Dockerfile │ │ └── standalone │ │ │ └── Dockerfile │ ├── solr │ │ ├── init │ │ │ └── Dockerfile │ │ └── standalone │ │ │ └── Dockerfile │ └── traefik │ │ ├── certs │ │ ├── authoring.localhost.crt │ │ ├── authoring.localhost.key │ │ ├── bizfx.localhost.crt │ │ ├── bizfx.localhost.key │ │ ├── minions.localhost.crt │ │ ├── minions.localhost.key │ │ ├── ops.localhost.crt │ │ ├── ops.localhost.key │ │ ├── root-ca.crt │ │ ├── root-ca.key │ │ ├── root.crt │ │ ├── root.key │ │ ├── shops.localhost.crt │ │ ├── shops.localhost.key │ │ ├── xc1cd.localhost.crt │ │ ├── xc1cd.localhost.key │ │ ├── xc1cm.localhost.crt │ │ ├── xc1cm.localhost.key │ │ ├── xc1id.localhost.crt │ │ ├── xc1id.localhost.key │ │ ├── xc1sxacd.localhost.crt │ │ ├── xc1sxacd.localhost.key │ │ ├── xc1sxacm.localhost.crt │ │ └── xc1sxacm.localhost.key │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml └── xc1 │ ├── .env │ ├── cd │ ├── Content │ │ └── Website │ │ │ └── App_Config │ │ │ └── Include │ │ │ ├── Domains.Shared.config │ │ │ └── Y.Commerce.Engine │ │ │ └── Y.Sitecore.Commerce.config │ ├── Permissions │ │ └── AdditionalWriteAllowedFolders.txt │ ├── tools │ │ ├── CopySecurityDomain.ps1 │ │ ├── GrantWritePermission.ps1 │ │ └── Invoke-XdtTransformations.ps1 │ └── xdts │ │ └── Web.config.xdt │ ├── cm │ ├── Content │ │ └── Website │ │ │ └── App_Config │ │ │ └── Include │ │ │ ├── Domains.Shared.config │ │ │ └── Y.Commerce.Engine │ │ │ └── Y.Sitecore.Commerce.config │ ├── Permissions │ │ └── AdditionalWriteAllowedFolders.txt │ ├── tools │ │ ├── CopySecurityDomain.ps1 │ │ ├── GrantWritePermission.ps1 │ │ └── Invoke-XdtTransformations.ps1 │ └── xdts │ │ └── Web.config.xdt │ ├── docker-compose.build.yml │ ├── prcrep │ └── keep.txt │ ├── xdbautomation │ └── keep.txt │ ├── xdbcollection │ └── keep.txt │ └── xdbsearch │ └── keep.txt ├── 10.1 ├── k8s-commerce-xc1 │ ├── bizfx.yaml │ ├── cd.yaml │ ├── cm.yaml │ ├── cortexprocessing.yaml │ ├── cortexprocessingworker.yaml │ ├── cortexreporting.yaml │ ├── engine-authoring.yaml │ ├── engine-minions.yaml │ ├── engine-ops.yaml │ ├── engine-shops.yaml │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ ├── id.yaml │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ ├── kustomization.yaml │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ ├── prc.yaml │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── tls │ │ │ ├── global-authoring │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-authority │ │ │ │ ├── root.crt │ │ │ │ └── root.key │ │ │ ├── global-bizfx │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-cd │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-cm │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-id │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-minions │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-ops │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ └── global-shops │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ ├── xc │ │ │ ├── commerce-bizfx-currency.txt │ │ │ ├── commerce-bizfx-language.txt │ │ │ ├── commerce-bizfx-shopname.txt │ │ │ ├── commerce-connect-clientid.txt │ │ │ ├── commerce-connect-clientsecret.txt │ │ │ ├── commerce-connect-redis-connection-string.txt │ │ │ ├── commerce-engine-archive-databasename.txt │ │ │ ├── commerce-engine-braintreeenvironment.txt │ │ │ ├── commerce-engine-braintreemerchantid.txt │ │ │ ├── commerce-engine-braintreeprivatekey.txt │ │ │ ├── commerce-engine-braintreepublickey.txt │ │ │ ├── commerce-engine-database-masterkey-password.txt │ │ │ ├── commerce-engine-shared-databasename.txt │ │ │ ├── commerce-redis-connection-string.txt │ │ │ ├── commerce-solr-connection-string.txt │ │ │ └── commerce-solr-prefix-name.txt │ │ └── xp │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-exm-master-database-password.txt │ │ │ ├── sitecore-exm-master-database-username.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-marketing-automation-database-password.txt │ │ │ ├── sitecore-marketing-automation-database-username.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-messaging-database-password.txt │ │ │ ├── sitecore-messaging-database-username.txt │ │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ │ ├── sitecore-processing-pools-database-password.txt │ │ │ ├── sitecore-processing-pools-database-username.txt │ │ │ ├── sitecore-processing-tasks-database-password.txt │ │ │ ├── sitecore-processing-tasks-database-username.txt │ │ │ ├── sitecore-redis-connection-string.txt │ │ │ ├── sitecore-reference-data-database-password.txt │ │ │ ├── sitecore-reference-data-database-username.txt │ │ │ ├── sitecore-reporting-database-password.txt │ │ │ ├── sitecore-reporting-database-username.txt │ │ │ ├── sitecore-reportingapikey.txt │ │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ └── sitecore-web-database-username.txt │ ├── volumes │ │ ├── azurefile │ │ │ └── submit-queue.yaml │ │ ├── hostpath │ │ │ └── submit-queue.yaml │ │ └── platform-config-storage.yaml │ ├── xdbautomation.yaml │ ├── xdbautomationrpt.yaml │ ├── xdbautomationworker.yaml │ ├── xdbcollection.yaml │ ├── xdbrefdata.yaml │ ├── xdbsearch.yaml │ └── xdbsearchworker.yaml ├── postman │ ├── Containers - Docker - AdventureWorks.postman_environment.json │ ├── Containers - Docker - Habitat.postman_environment.json │ ├── Containers - K8S - AdventureWorks.postman_environment.json │ └── Containers - K8S - Habitat.postman_environment.json ├── scripts │ ├── CleanContainerCache.ps1 │ ├── ContainerBuild.ps1 │ ├── ContainerTag.ps1 │ ├── CreateCertsXC0.cmd │ ├── CreateCertsXC1-CXA.cmd │ ├── FakeLicenseFile.txt │ ├── PrepContainerBuild.ps1 │ ├── ScriptSupport.psm1 │ ├── UpdateEnvCompose.ps1 │ ├── UpdateEnvTag.ps1 │ ├── UpdateK8SYaml.ps1 │ ├── WDPMapping.json │ ├── configltsc2019.json │ └── readme.md ├── xc-common │ ├── .env │ ├── bizfx │ │ ├── Dockerfile │ │ ├── Init.ps1 │ │ └── InstallPrerequisites.ps1 │ ├── cd-cm │ │ └── Dockerfile │ ├── docker-compose.build.yml │ ├── engine │ │ └── Dockerfile │ ├── id │ │ └── Dockerfile │ ├── mssql │ │ ├── common │ │ │ └── tools │ │ │ │ ├── CreateExternalDataSources.ps1 │ │ │ │ ├── DeployRoles.ps1 │ │ │ │ └── StartCommerceInit.ps1 │ │ ├── init │ │ │ └── Dockerfile │ │ └── standalone │ │ │ └── Dockerfile │ ├── prc-rep │ │ └── Dockerfile │ ├── solr-init │ │ ├── Dockerfile │ │ ├── tools │ │ │ └── scripts │ │ │ │ ├── New-SolrCore-Commerce.ps1 │ │ │ │ └── Start-Commerce.ps1 │ │ ├── xc0 │ │ │ └── cores-commerce.json │ │ └── xc1 │ │ │ └── cores-commerce.json │ ├── xdbautomation │ │ └── Dockerfile │ ├── xdbsearch │ │ └── Dockerfile │ └── xdbworkers │ │ └── Dockerfile ├── xc-resources │ ├── .env │ ├── docker-compose.build.yml │ └── resources │ │ ├── Dockerfile │ │ ├── configs │ │ ├── bizfx.txt │ │ ├── cd.txt │ │ ├── cdcxa.txt │ │ ├── cm.txt │ │ ├── cmcxa.txt │ │ ├── cmxc0.txt │ │ └── engine.txt │ │ ├── content │ │ ├── bizfx │ │ │ └── LogMonitor │ │ │ │ └── LogMonitorConfig.json │ │ ├── cd │ │ │ ├── Permissions │ │ │ │ └── AdditionalWriteAllowedFolders.txt │ │ │ ├── inetpub │ │ │ │ └── wwwroot │ │ │ │ │ └── App_Config │ │ │ │ │ └── Include │ │ │ │ │ ├── Domains.Shared.config │ │ │ │ │ └── Y.Commerce.Engine │ │ │ │ │ └── Y.Sitecore.Commerce.config │ │ │ └── xdts │ │ │ │ └── Web.config.xdt │ │ ├── cdcxa │ │ │ ├── inetpub │ │ │ │ └── wwwroot │ │ │ │ │ └── App_Config │ │ │ │ │ └── Include │ │ │ │ │ └── Sitecore.Commerce.XA.CustomSolrCorePrefixName.config │ │ │ └── xdts │ │ │ │ └── Web.config.xdt │ │ ├── cm │ │ │ └── inetpub │ │ │ │ └── wwwroot │ │ │ │ └── App_Config │ │ │ │ └── Include │ │ │ │ └── Y.Commerce.Engine │ │ │ │ └── Y.Sitecore.Commerce.config │ │ ├── cmcxa │ │ │ ├── inetpub │ │ │ │ └── wwwroot │ │ │ │ │ └── App_Config │ │ │ │ │ └── Include │ │ │ │ │ └── Sitecore.Commerce.XA.CustomSolrCorePrefixName.config │ │ │ └── xdts │ │ │ │ └── Web.config.xdt │ │ ├── cmxc0 │ │ │ └── Permissions │ │ │ │ └── AdditionalWriteAllowedFolders.txt │ │ └── engine │ │ │ ├── HealthChecks │ │ │ └── Healthcheck.ps1 │ │ │ └── LogMonitor │ │ │ └── LogMonitorConfig.json │ │ └── tools │ │ └── scripts │ │ ├── Copy-Resources.ps1 │ │ ├── CopySecurityDomain.ps1 │ │ ├── GrantWritePermission.ps1 │ │ └── Invoke-XdtTransformations.ps1 ├── xc0 │ ├── .env │ ├── cm │ │ └── readme │ ├── docker-compose.build.yml │ ├── docker-compose.yml │ ├── traefik │ │ ├── certs │ │ │ ├── authoring.localhost.crt │ │ │ ├── authoring.localhost.key │ │ │ ├── bizfx.localhost.crt │ │ │ ├── bizfx.localhost.key │ │ │ ├── minions.localhost.crt │ │ │ ├── minions.localhost.key │ │ │ ├── ops.localhost.crt │ │ │ ├── ops.localhost.key │ │ │ ├── root-ca.crt │ │ │ ├── root-ca.key │ │ │ ├── shops.localhost.crt │ │ │ ├── shops.localhost.key │ │ │ ├── xc0cm.localhost.crt │ │ │ ├── xc0cm.localhost.key │ │ │ ├── xc0id.localhost.crt │ │ │ └── xc0id.localhost.key │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ └── xconnect │ │ └── keep.txt ├── xc1-cxa │ ├── .env │ ├── cd │ │ └── Dockerfile │ ├── cm │ │ └── Dockerfile │ ├── commerce.build.yml │ ├── docker-compose.build.yml │ ├── docker-compose.yml │ ├── mssql │ │ ├── init │ │ │ └── Dockerfile │ │ └── standalone │ │ │ └── Dockerfile │ ├── solr │ │ └── init │ │ │ └── Dockerfile │ └── traefik │ │ ├── certs │ │ ├── authoring.localhost.crt │ │ ├── authoring.localhost.key │ │ ├── bizfx.localhost.crt │ │ ├── bizfx.localhost.key │ │ ├── minions.localhost.crt │ │ ├── minions.localhost.key │ │ ├── ops.localhost.crt │ │ ├── ops.localhost.key │ │ ├── root-ca.crt │ │ ├── root-ca.key │ │ ├── shops.localhost.crt │ │ ├── shops.localhost.key │ │ ├── xc1cd.localhost.crt │ │ ├── xc1cd.localhost.key │ │ ├── xc1cm.localhost.crt │ │ ├── xc1cm.localhost.key │ │ ├── xc1id.localhost.crt │ │ └── xc1id.localhost.key │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml └── xc1 │ ├── .env │ ├── cd │ └── readme │ ├── cm │ └── readme │ ├── docker-compose.build.yml │ ├── prcrep │ └── keep.txt │ ├── xdbautomation │ └── keep.txt │ ├── xdbcollection │ └── keep.txt │ └── xdbsearch │ └── keep.txt ├── 10.2 ├── k8s-commerce-xc1 │ ├── bizfx.yaml │ ├── cd.yaml │ ├── cm.yaml │ ├── configmaps │ │ ├── bizfx-hostname │ │ ├── cd-hostname │ │ ├── cm-hostname │ │ ├── engine-authoring-hostname │ │ ├── engine-minions-hostname │ │ ├── engine-shops-hostname │ │ ├── id-hostname │ │ └── kustomization.yaml │ ├── cortexprocessing.yaml │ ├── cortexprocessingworker.yaml │ ├── cortexreporting.yaml │ ├── engine-authoring.yaml │ ├── engine-minions.yaml │ ├── engine-shops.yaml │ ├── external │ │ ├── kustomization.yaml │ │ ├── mssql.yaml │ │ ├── redis.yaml │ │ └── solr.yaml │ ├── id.yaml │ ├── ingress-nginx │ │ ├── configuration.yaml │ │ ├── ingress.yaml │ │ └── kustomization.yaml │ ├── init │ │ ├── kustomization.yaml │ │ ├── mssql-init.yaml │ │ └── solr-init.yaml │ ├── kustomization.yaml │ ├── overlays │ │ └── init │ │ │ └── SearchStax │ │ │ ├── kustomization.yaml │ │ │ ├── sitecore-searchstax-account-name.txt │ │ │ ├── sitecore-searchstax-apikey.txt │ │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ │ └── solr-init.yaml │ ├── prc.yaml │ ├── secrets │ │ ├── kustomization.yaml │ │ ├── tls │ │ │ ├── global-authoring │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-authority │ │ │ │ ├── root.crt │ │ │ │ └── root.key │ │ │ ├── global-bizfx │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-cd │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-cm │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-id │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ ├── global-minions │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ │ └── global-shops │ │ │ │ ├── tls.crt │ │ │ │ └── tls.key │ │ ├── xc │ │ │ ├── commerce-bizfx-currency.txt │ │ │ ├── commerce-bizfx-language.txt │ │ │ ├── commerce-bizfx-shopname.txt │ │ │ ├── commerce-connect-clientid.txt │ │ │ ├── commerce-connect-clientsecret.txt │ │ │ ├── commerce-connect-redis-connection-string.txt │ │ │ ├── commerce-engine-archive-databasename.txt │ │ │ ├── commerce-engine-braintreeenvironment.txt │ │ │ ├── commerce-engine-braintreemerchantid.txt │ │ │ ├── commerce-engine-braintreeprivatekey.txt │ │ │ ├── commerce-engine-braintreepublickey.txt │ │ │ ├── commerce-engine-database-masterkey-password.txt │ │ │ ├── commerce-engine-shared-databasename.txt │ │ │ ├── commerce-redis-connection-string.txt │ │ │ ├── commerce-solr-connection-string.txt │ │ │ └── commerce-solr-prefix-name.txt │ │ └── xp │ │ │ ├── sitecore-adminpassword.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ │ ├── sitecore-core-database-password.txt │ │ │ ├── sitecore-core-database-username.txt │ │ │ ├── sitecore-database-elastic-pool-name.txt │ │ │ ├── sitecore-databasepassword.txt │ │ │ ├── sitecore-databaseservername.txt │ │ │ ├── sitecore-databaseusername.txt │ │ │ ├── sitecore-exm-master-database-password.txt │ │ │ ├── sitecore-exm-master-database-username.txt │ │ │ ├── sitecore-forms-database-password.txt │ │ │ ├── sitecore-forms-database-username.txt │ │ │ ├── sitecore-identitycertificate.txt │ │ │ ├── sitecore-identitycertificatepassword.txt │ │ │ ├── sitecore-identitysecret.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sitecore-marketing-automation-database-password.txt │ │ │ ├── sitecore-marketing-automation-database-username.txt │ │ │ ├── sitecore-master-database-password.txt │ │ │ ├── sitecore-master-database-username.txt │ │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ │ ├── sitecore-messaging-database-password.txt │ │ │ ├── sitecore-messaging-database-username.txt │ │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ │ ├── sitecore-processing-pools-database-password.txt │ │ │ ├── sitecore-processing-pools-database-username.txt │ │ │ ├── sitecore-processing-tasks-database-password.txt │ │ │ ├── sitecore-processing-tasks-database-username.txt │ │ │ ├── sitecore-redis-connection-string.txt │ │ │ ├── sitecore-reference-data-database-password.txt │ │ │ ├── sitecore-reference-data-database-username.txt │ │ │ ├── sitecore-reporting-database-password.txt │ │ │ ├── sitecore-reporting-database-username.txt │ │ │ ├── sitecore-reportingapikey.txt │ │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ │ ├── sitecore-solr-connection-string.txt │ │ │ ├── sitecore-solr-core-prefix-name.txt │ │ │ ├── sitecore-telerikencryptionkey.txt │ │ │ ├── sitecore-web-database-password.txt │ │ │ └── sitecore-web-database-username.txt │ ├── volumes │ │ ├── azurefile │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ ├── hostpath │ │ │ ├── logs.yaml │ │ │ └── submit-queue.yaml │ │ └── platform-config-storage.yaml │ ├── xdbautomation.yaml │ ├── xdbautomationrpt.yaml │ ├── xdbautomationworker.yaml │ ├── xdbcollection.yaml │ ├── xdbrefdata.yaml │ ├── xdbsearch.yaml │ └── xdbsearchworker.yaml ├── postman │ ├── Containers - Docker - AdventureWorks.postman_environment.json │ ├── Containers - Docker - Habitat.postman_environment.json │ ├── Containers - K8S - AdventureWorks.postman_environment.json │ └── Containers - K8S - Habitat.postman_environment.json ├── scripts │ ├── CleanContainerCache.ps1 │ ├── ComposeInit.ps1 │ ├── ContainerBuild.ps1 │ ├── ContainerTag.ps1 │ ├── PrepEngineContainerBuild.ps1 │ ├── UpdateEnvTag.ps1 │ ├── UpdateK8SUpgradeYaml.ps1 │ ├── UpdateK8SYaml.ps1 │ ├── configltsc2019.json │ ├── configltsc2022.json │ └── readme.md ├── upgrade │ ├── k8s-sitecore-xc1 │ │ ├── configuration │ │ │ ├── commerce-engine-archive-databasename.txt │ │ │ ├── commerce-engine-database-masterkey-password.txt │ │ │ ├── commerce-engine-global-databasename.txt │ │ │ ├── commerce-engine-shared-databasename.txt │ │ │ ├── is-always-encrypted.txt │ │ │ ├── sitecore-license.txt │ │ │ ├── sql-database-prefix.txt │ │ │ ├── sql-password.txt │ │ │ ├── sql-server.txt │ │ │ └── sql-user-name.txt │ │ ├── kustomization.yaml │ │ └── mssql-upgrade.yaml │ └── sitecore-xc │ │ ├── docker-compose-upgrade.yml │ │ └── upgrade.env ├── xc-common │ ├── .env │ ├── bizfx │ │ ├── Dockerfile │ │ ├── Init.ps1 │ │ ├── InstallPrerequisites.ps1 │ │ └── LogMonitor │ │ │ └── LogMonitorConfig.json │ ├── docker-compose.build.yml │ ├── engine │ │ ├── Dockerfile │ │ ├── HealthChecks │ │ │ └── Healthcheck.ps1 │ │ └── LogMonitor │ │ │ └── LogMonitorConfig.json │ ├── id │ │ └── Dockerfile │ ├── mssql │ │ └── init │ │ │ └── Dockerfile │ ├── prc-rep │ │ └── Dockerfile │ ├── solr-init │ │ └── Dockerfile │ ├── xdbautomation │ │ └── Dockerfile │ ├── xdbsearch │ │ └── Dockerfile │ └── xdbworkers │ │ └── Dockerfile ├── xc0 │ ├── .env │ ├── cm │ │ ├── Dockerfile │ │ └── readme │ ├── docker-compose.build.yml │ ├── docker-compose.yml │ ├── traefik │ │ ├── certs │ │ │ └── readme │ │ └── config │ │ │ └── dynamic │ │ │ └── certs_config.yaml │ └── xconnect │ │ └── keep.txt ├── xc1-cxa │ ├── .env │ ├── cd │ │ └── Dockerfile │ ├── cm │ │ └── Dockerfile │ ├── docker-compose.build.yml │ ├── docker-compose.yml │ ├── mssql │ │ └── init │ │ │ └── Dockerfile │ ├── solr-init │ │ └── Dockerfile │ └── traefik │ │ ├── certs │ │ └── readme │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml └── xc1 │ ├── .env │ ├── cd │ ├── Dockerfile │ └── readme │ ├── cm │ ├── Dockerfile │ └── readme │ ├── docker-compose.build.yml │ ├── prcrep │ └── keep.txt │ ├── xdbautomation │ └── keep.txt │ ├── xdbcollection │ └── keep.txt │ └── xdbsearch │ └── keep.txt └── 10.3 ├── k8s-commerce-xc1 ├── bizfx.yaml ├── cd.yaml ├── cm.yaml ├── configmaps │ ├── bizfx-hostname │ ├── cd-hostname │ ├── cm-hostname │ ├── engine-authoring-hostname │ ├── engine-minions-hostname │ ├── engine-shops-hostname │ ├── id-hostname │ └── kustomization.yaml ├── cortexprocessing.yaml ├── cortexprocessingworker.yaml ├── cortexreporting.yaml ├── engine-authoring.yaml ├── engine-minions.yaml ├── engine-shops.yaml ├── external │ ├── kustomization.yaml │ ├── mssql.yaml │ ├── redis.yaml │ └── solr.yaml ├── id.yaml ├── ingress-nginx │ ├── configuration.yaml │ ├── ingress.yaml │ └── kustomization.yaml ├── init │ ├── kustomization.yaml │ ├── mssql-init.yaml │ └── solr-init.yaml ├── kustomization.yaml ├── overlays │ └── init │ │ └── SearchStax │ │ ├── kustomization.yaml │ │ ├── sitecore-searchstax-account-name.txt │ │ ├── sitecore-searchstax-apikey.txt │ │ ├── sitecore-searchstax-deployment-uid.txt │ │ └── solr-init.yaml ├── prc.yaml ├── secrets │ ├── kustomization.yaml │ ├── tls │ │ ├── global-authoring │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ ├── global-authority │ │ │ ├── root.crt │ │ │ └── root.key │ │ ├── global-bizfx │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ ├── global-cd │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ ├── global-cm │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ ├── global-id │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ ├── global-minions │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ └── global-shops │ │ │ ├── tls.crt │ │ │ └── tls.key │ ├── xc │ │ ├── commerce-bizfx-currency.txt │ │ ├── commerce-bizfx-language.txt │ │ ├── commerce-bizfx-shopname.txt │ │ ├── commerce-connect-clientid.txt │ │ ├── commerce-connect-clientsecret.txt │ │ ├── commerce-connect-redis-connection-string.txt │ │ ├── commerce-engine-archive-databasename.txt │ │ ├── commerce-engine-braintreeenvironment.txt │ │ ├── commerce-engine-braintreemerchantid.txt │ │ ├── commerce-engine-braintreeprivatekey.txt │ │ ├── commerce-engine-braintreepublickey.txt │ │ ├── commerce-engine-database-masterkey-password.txt │ │ ├── commerce-engine-shared-databasename.txt │ │ ├── commerce-redis-connection-string.txt │ │ ├── commerce-solr-connection-string.txt │ │ └── commerce-solr-prefix-name.txt │ └── xp │ │ ├── sitecore-adminpassword.txt │ │ ├── sitecore-collection-shardmapmanager-database-password.txt │ │ ├── sitecore-collection-shardmapmanager-database-username.txt │ │ ├── sitecore-core-database-password.txt │ │ ├── sitecore-core-database-username.txt │ │ ├── sitecore-custom-database-prefix-update-from.txt │ │ ├── sitecore-database-elastic-pool-name.txt │ │ ├── sitecore-databasepassword.txt │ │ ├── sitecore-databaseprefix.txt │ │ ├── sitecore-databaseservername.txt │ │ ├── sitecore-databaseusername.txt │ │ ├── sitecore-exm-master-database-password.txt │ │ ├── sitecore-exm-master-database-username.txt │ │ ├── sitecore-forms-database-password.txt │ │ ├── sitecore-forms-database-username.txt │ │ ├── sitecore-graphql-uploadmedia_encryptionkey.txt │ │ ├── sitecore-identitycertificate.txt │ │ ├── sitecore-identitycertificatepassword.txt │ │ ├── sitecore-identitysecret.txt │ │ ├── sitecore-license.txt │ │ ├── sitecore-log-level-value.txt │ │ ├── sitecore-marketing-automation-database-password.txt │ │ ├── sitecore-marketing-automation-database-username.txt │ │ ├── sitecore-master-database-password.txt │ │ ├── sitecore-master-database-username.txt │ │ ├── sitecore-media-request-protection-shared-secret.txt │ │ ├── sitecore-messaging-database-password.txt │ │ ├── sitecore-messaging-database-username.txt │ │ ├── sitecore-processing-engine-storage-database-password.txt │ │ ├── sitecore-processing-engine-storage-database-username.txt │ │ ├── sitecore-processing-engine-tasks-database-password.txt │ │ ├── sitecore-processing-engine-tasks-database-username.txt │ │ ├── sitecore-processing-pools-database-password.txt │ │ ├── sitecore-processing-pools-database-username.txt │ │ ├── sitecore-processing-tasks-database-password.txt │ │ ├── sitecore-processing-tasks-database-username.txt │ │ ├── sitecore-redis-connection-string.txt │ │ ├── sitecore-reference-data-database-password.txt │ │ ├── sitecore-reference-data-database-username.txt │ │ ├── sitecore-reporting-database-password.txt │ │ ├── sitecore-reporting-database-username.txt │ │ ├── sitecore-reportingapikey.txt │ │ ├── sitecore-solr-connection-string-xdb.txt │ │ ├── sitecore-solr-connection-string.txt │ │ ├── sitecore-solr-core-prefix-name.txt │ │ ├── sitecore-telerikencryptionkey.txt │ │ ├── sitecore-web-database-password.txt │ │ └── sitecore-web-database-username.txt ├── volumes │ ├── azurefile │ │ ├── device-detection.yaml │ │ ├── logs.yaml │ │ └── submit-queue.yaml │ ├── hostpath │ │ ├── device-detection.yaml │ │ ├── logs.yaml │ │ └── submit-queue.yaml │ └── platform-config-storage.yaml ├── xdbautomation.yaml ├── xdbautomationrpt.yaml ├── xdbautomationworker.yaml ├── xdbcollection.yaml ├── xdbrefdata.yaml ├── xdbsearch.yaml └── xdbsearchworker.yaml ├── postman ├── Containers - Docker - AdventureWorks.postman_environment.json ├── Containers - Docker - Habitat.postman_environment.json ├── Containers - K8S - AdventureWorks.postman_environment.json └── Containers - K8S - Habitat.postman_environment.json ├── scripts ├── CleanContainerCache.ps1 ├── ComposeInit.ps1 ├── ContainerBuild.ps1 ├── ContainerTag.ps1 ├── PrepEngineContainerBuild.ps1 ├── UpdateEnvTag.ps1 ├── UpdateK8SYaml.ps1 ├── configltsc2019.json ├── configltsc2022.json └── readme.md ├── xc-common ├── .env ├── bizfx │ ├── Dockerfile │ ├── Init.ps1 │ ├── InstallPrerequisites.ps1 │ └── LogMonitor │ │ └── LogMonitorConfig.json ├── docker-compose.build.yml ├── engine │ ├── Dockerfile │ ├── HealthChecks │ │ └── Healthcheck.ps1 │ └── LogMonitor │ │ └── LogMonitorConfig.json ├── id │ └── Dockerfile ├── mssql │ └── init │ │ └── Dockerfile ├── prc-rep │ └── Dockerfile ├── solr-init │ └── Dockerfile ├── xdbautomation │ └── Dockerfile ├── xdbsearch │ └── Dockerfile └── xdbworkers │ └── Dockerfile ├── xc0 ├── .env ├── cm │ ├── Dockerfile │ └── readme ├── device-detection-data │ └── readme.md ├── docker-compose.build.yml ├── docker-compose.yml ├── traefik │ ├── certs │ │ └── readme │ └── config │ │ └── dynamic │ │ └── certs_config.yaml └── xconnect │ └── keep.txt ├── xc1-cxa ├── .env ├── cd │ └── Dockerfile ├── cm │ └── Dockerfile ├── device-detection-data │ └── readme.md ├── docker-compose.build.yml ├── docker-compose.yml ├── mssql │ └── init │ │ └── Dockerfile ├── solr-init │ └── Dockerfile └── traefik │ ├── certs │ └── readme │ └── config │ └── dynamic │ └── certs_config.yaml └── xc1 ├── .env ├── cd ├── Dockerfile └── readme ├── cm ├── Dockerfile └── readme ├── docker-compose.build.yml ├── prcrep └── keep.txt ├── xdbautomation └── keep.txt ├── xdbcollection └── keep.txt └── xdbsearch └── keep.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.tgz 3 | -------------------------------------------------------------------------------- /compose/def/6.0/2009/xm1/.env-example: -------------------------------------------------------------------------------- 1 | #Add the following environment variables to the Sitecore Platform .env file 2 | 3 | #Sitecore Platform topology to deploy 4 | TOPOLOGY= -------------------------------------------------------------------------------- /compose/def/6.0/ltsc2019/xm1/.env-example: -------------------------------------------------------------------------------- 1 | #Add the following environment variables to the Sitecore Platform .env file 2 | 3 | #Sitecore Platform topology to deploy 4 | TOPOLOGY= -------------------------------------------------------------------------------- /compose/def/7.0/2009/xm1/docker-compose.override.yml: -------------------------------------------------------------------------------- 1 | services: 2 | cm: 3 | image: sitecore-def-${TOPOLOGY}-cm:${SITECORE_VERSION} -------------------------------------------------------------------------------- /compose/def/7.0/ltsc2019/xm1/docker-compose.override.yml: -------------------------------------------------------------------------------- 1 | services: 2 | cm: 3 | image: sitecore-def-${TOPOLOGY}-cm:${SITECORE_VERSION} -------------------------------------------------------------------------------- /compose/def/8.0/ltsc2019/xm1/docker-compose.override.yml: -------------------------------------------------------------------------------- 1 | services: 2 | cm: 3 | image: sitecore-def-${TOPOLOGY}-cm:${SITECORE_VERSION} -------------------------------------------------------------------------------- /compose/def/8.0/ltsc2022/xm1/docker-compose.override.yml: -------------------------------------------------------------------------------- 1 | services: 2 | cm: 3 | image: sitecore-def-${TOPOLOGY}-cm:${SITECORE_VERSION} -------------------------------------------------------------------------------- /compose/expedge/20.0/ltsc2019/.env-example: -------------------------------------------------------------------------------- 1 | # Add the following environment variables to the Sitecore Platform .env file 2 | 3 | VERSION= 4 | 5 | TOPOLOGY= 6 | 7 | XE_CONNECTION= 8 | -------------------------------------------------------------------------------- /compose/expedge/20.0/ltsc2022/.env-example: -------------------------------------------------------------------------------- 1 | # Add the following environment variables to the Sitecore Platform .env file 2 | 3 | VERSION= 4 | 5 | TOPOLOGY= 6 | 7 | XE_CONNECTION= 8 | -------------------------------------------------------------------------------- /compose/expedge/21.0/ltsc2019/.env-example: -------------------------------------------------------------------------------- 1 | # Add the following environment variables to the Sitecore Platform .env file 2 | 3 | VERSION= 4 | 5 | TOPOLOGY= 6 | 7 | XE_CONNECTION= 8 | -------------------------------------------------------------------------------- /compose/expedge/21.0/ltsc2022/.env-example: -------------------------------------------------------------------------------- 1 | # Add the following environment variables to the Sitecore Platform .env file 2 | 3 | VERSION= 4 | 5 | TOPOLOGY= 6 | 7 | XE_CONNECTION= 8 | -------------------------------------------------------------------------------- /compose/expedge/22.0/ltsc2019/.env-example: -------------------------------------------------------------------------------- 1 | # Add the following environment variables to the Sitecore Platform .env file 2 | 3 | VERSION= 4 | 5 | TOPOLOGY= 6 | 7 | XE_CONNECTION= 8 | -------------------------------------------------------------------------------- /compose/expedge/22.0/ltsc2022/.env-example: -------------------------------------------------------------------------------- 1 | # Add the following environment variables to the Sitecore Platform .env file 2 | 3 | VERSION= 4 | 5 | TOPOLOGY= 6 | 7 | XE_CONNECTION= 8 | -------------------------------------------------------------------------------- /compose/horizon/10.1/2009/dam.override.yml: -------------------------------------------------------------------------------- 1 | version: "2.4" 2 | services: 3 | hrz: 4 | environment: 5 | Sitecore_Plugins__Filters__ContentHub: +ContentHub -------------------------------------------------------------------------------- /compose/horizon/10.1/2009/sxa.override.yml: -------------------------------------------------------------------------------- 1 | version: "2.4" 2 | services: 3 | hrz: 4 | environment: 5 | Sitecore_Plugins__Filters__ExperienceAccelerator: +SXA -------------------------------------------------------------------------------- /compose/horizon/10.1/ltsc2019/dam.override.yml: -------------------------------------------------------------------------------- 1 | version: "2.4" 2 | services: 3 | hrz: 4 | environment: 5 | Sitecore_Plugins__Filters__ContentHub: +ContentHub -------------------------------------------------------------------------------- /compose/horizon/10.1/ltsc2019/sxa.override.yml: -------------------------------------------------------------------------------- 1 | version: "2.4" 2 | services: 3 | hrz: 4 | environment: 5 | Sitecore_Plugins__Filters__ExperienceAccelerator: +SXA -------------------------------------------------------------------------------- /compose/horizon/10.2/2009/dam.override.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | hrz: 3 | environment: 4 | Sitecore_Plugins__Filters__ContentHub: +ContentHub 5 | 6 | -------------------------------------------------------------------------------- /compose/horizon/10.2/2009/sxa.override.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | hrz: 3 | environment: 4 | Sitecore_Plugins__Filters__ExperienceAccelerator: +SXA 5 | 6 | -------------------------------------------------------------------------------- /compose/horizon/10.2/ltsc2019/dam.override.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | hrz: 3 | environment: 4 | Sitecore_Plugins__Filters__ContentHub: +ContentHub 5 | 6 | -------------------------------------------------------------------------------- /compose/horizon/10.2/ltsc2019/sxa.override.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | hrz: 3 | environment: 4 | Sitecore_Plugins__Filters__ExperienceAccelerator: +SXA 5 | 6 | -------------------------------------------------------------------------------- /compose/horizon/10.2/ltsc2022/dam.override.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | hrz: 3 | environment: 4 | Sitecore_Plugins__Filters__ContentHub: +ContentHub -------------------------------------------------------------------------------- /compose/horizon/10.2/ltsc2022/sxa.override.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | hrz: 3 | environment: 4 | Sitecore_Plugins__Filters__ExperienceAccelerator: +SXA -------------------------------------------------------------------------------- /compose/scse/1.0/ltsc2019/ltsc2019/xp0/.env-example: -------------------------------------------------------------------------------- 1 | GP_VERSION= 2 | SITECORE_VERSION= 3 | -------------------------------------------------------------------------------- /compose/scse/1.0/ltsc2019/ltsc2019/xp1/.env-example: -------------------------------------------------------------------------------- 1 | GP_VERSION= 2 | SITECORE_VERSION= 3 | -------------------------------------------------------------------------------- /compose/scse/1.0/ltsc2019/ltsc2022/xp0/.env-example: -------------------------------------------------------------------------------- 1 | GP_VERSION= 2 | SITECORE_VERSION= 3 | -------------------------------------------------------------------------------- /compose/scse/1.0/ltsc2019/ltsc2022/xp1/.env-example: -------------------------------------------------------------------------------- 1 | GP_VERSION= 2 | SITECORE_VERSION= 3 | -------------------------------------------------------------------------------- /compose/scse/1.0/ltsc2022/xp0/.env-example: -------------------------------------------------------------------------------- 1 | GP_VERSION= 2 | SITECORE_VERSION= 3 | -------------------------------------------------------------------------------- /compose/scse/1.0/ltsc2022/xp1/.env-example: -------------------------------------------------------------------------------- 1 | GP_VERSION= 2 | SITECORE_VERSION= 3 | -------------------------------------------------------------------------------- /compose/sxp/10.0/ltsc2019/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.0/ltsc2019/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.0/ltsc2019/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.0/ltsc2019/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.0/ltsc2019/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.0/ltsc2019/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.1/ltsc2019/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.1/ltsc2019/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.1/ltsc2019/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.1/ltsc2019/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.1/ltsc2019/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.1/ltsc2019/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2019/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2019/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2019/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2019/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2019/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2019/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2022/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2022/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2022/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2022/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2022/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.2/ltsc2022/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xm1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xp0/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xp1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2019/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xm1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xp0/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xp1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.3/ltsc2022/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xm1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xp0/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xp1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2019/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xm1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xm1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xm1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xp0/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xp0/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xp0/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xp1/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xp1/mssql-data/readme.md: -------------------------------------------------------------------------------- 1 | database files will be mounted here -------------------------------------------------------------------------------- /compose/sxp/10.4/ltsc2022/xp1/solr-data/readme.md: -------------------------------------------------------------------------------- 1 | solr indexes will be mounted here -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/demo/.gitkeep -------------------------------------------------------------------------------- /demo/10.0/headless-xp0/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/10.0/headless-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.0/platform-xp/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.0/platform-xp/values.yaml: -------------------------------------------------------------------------------- 1 | licenseFileSecretName: -------------------------------------------------------------------------------- /demo/10.0/platform-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/cd/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-cd:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/cm/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-cm:10.0.0-ltsc2019 2 | 3 | cmp: 4 | contenthub: "" -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/cortexprocessing/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-cortexprocessing:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/cortexprocessingworker/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-cortexprocessingworker:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/cortexreporting/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-cortexreporting:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/id/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-id:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/mssql-init/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-mssql-init:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/prc/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-prc:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/redis/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-redis:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/rep/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-rep:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/solr-init/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-solr-init:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbautomation/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbautomation:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbautomationrpt/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbautomationrpt:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbautomationworker/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbautomationworker:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbcollection/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbcollection:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbrefdata/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbrefdata:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbsearch/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbsearch:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/charts/xdbsearchworker/values.yaml: -------------------------------------------------------------------------------- 1 | image: scr.sitecore.com/sxp/sitecore-xp1-xdbsearchworker:10.0.0-ltsc2019 2 | -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/demo/10.0/sitecore-xp/values.yaml -------------------------------------------------------------------------------- /demo/10.0/sitecore-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /demo/10.1/edge-xm0/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/10.1/edge-xm0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/headless-bx-oc-xm1/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/10.1/headless-bx-oc-xm1/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/headless-bx-oc-xm1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/demo/10.1/headless-bx-oc-xm1/values.yaml -------------------------------------------------------------------------------- /demo/10.1/headless-bx-oc/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/10.1/headless-bx-oc/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/headless-bx-oc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/demo/10.1/headless-bx-oc/values.yaml -------------------------------------------------------------------------------- /demo/10.1/headless-xm1/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/10.1/headless-xm1/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/headless-xp0/.gitignore: -------------------------------------------------------------------------------- 1 | Chart.lock -------------------------------------------------------------------------------- /demo/10.1/headless-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/headstart/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/headstart/values.yaml: -------------------------------------------------------------------------------- 1 | global: 2 | sitecore: 3 | buyer: 4 | host: "buyer" 5 | seller: 6 | host: "seller" 7 | middleware: 8 | host: "middleware" 9 | -------------------------------------------------------------------------------- /demo/10.1/platform-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.1/sitecore-xm0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /demo/10.1/sitecore-xm1/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /demo/10.1/sitecore-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /demo/10.2/edge-xm0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.2/platform-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.2/product-xm0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --installed-- 2 | -------------------------------------------------------------------------------- /demo/10.2/sitecore-xm0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /demo/10.2/sitecore-xp0/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | --Installed-- -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-entity-path-in.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-entity-path-out.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | [DAM_ContentHub] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xm1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-entity-path-in.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-entity-path-out.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | [DAM_ContentHub] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/4.0/ltsc2019/overrides/xp1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-entity-path-in.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-entity-path-out.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xm1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-entity-path-in.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-entity-path-out.txt: -------------------------------------------------------------------------------- 1 | Endpoint=[Endpoint];SharedAccessKeyName=[SharedAccessKeyName];SharedAccessKey=[SharedAccessKey];EntityPath=[EntityPath] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.0/ltsc2019/overrides/xp1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xm1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xm1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xm1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xm1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xp1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xp1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xp1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2019/overrides/xp1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xm1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xm1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xm1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xm1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xm1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xp1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xp1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xp1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xp1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.1/ltsc2022/overrides/xp1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xm1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xm1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xm1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xm1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xm1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xp1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xp1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xp1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xp1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2019/overrides/xp1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xm1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xm1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xm1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xm1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xm1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xp1/secrets/sitecore-cmp-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xp1/secrets/sitecore-cmp-service-bus-subscription.txt: -------------------------------------------------------------------------------- 1 | [CMP_ServiceBusSubscription] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xp1/secrets/sitecore-dam-content-hub.txt: -------------------------------------------------------------------------------- 1 | ClientId=[ClientId];ClientSecret=[ClientSecret];UserName=[UserName];Password=[Password];URI=[URI]; -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xp1/secrets/sitecore-dam-external-redirect-key.txt: -------------------------------------------------------------------------------- 1 | [DAM_ExternalRedirectKey] -------------------------------------------------------------------------------- /k8s/chub/5.2/ltsc2022/overrides/xp1/secrets/sitecore-dam-search-page.txt: -------------------------------------------------------------------------------- 1 | [DAM_SearchPage] -------------------------------------------------------------------------------- /k8s/dcrm/6.0/ltsc2019/overrides/xp1/secrets/sitecore-data-exchange-staging.txt: -------------------------------------------------------------------------------- 1 | user id=[user-id];password=[password];data source=[data-source];database=[database] -------------------------------------------------------------------------------- /k8s/dcrm/6.0/ltsc2019/overrides/xp1/secrets/sitecore-dcrm.txt: -------------------------------------------------------------------------------- 1 | Url=[dynamics-crm-url];Username=[username];Password=[password] -------------------------------------------------------------------------------- /k8s/dcrm/7.0/ltsc2019/overrides/xp1/secrets/sitecore-data-exchange-staging.txt: -------------------------------------------------------------------------------- 1 | user id=[user-id];password=[password];data source=[data-source];database=[database] -------------------------------------------------------------------------------- /k8s/dcrm/7.0/ltsc2019/overrides/xp1/secrets/sitecore-dcrm.txt: -------------------------------------------------------------------------------- 1 | AuthType=Office365;Url=[dynamics-crm-url];Username=[username];Password=[password] -------------------------------------------------------------------------------- /k8s/dcrm/8.0/ltsc2019/overrides/xp1/secrets/sitecore-data-exchange-staging.txt: -------------------------------------------------------------------------------- 1 | user id=[user-id];password=[password];data source=[data-source];database=[database] -------------------------------------------------------------------------------- /k8s/dcrm/8.0/ltsc2019/overrides/xp1/secrets/sitecore-dcrm.txt: -------------------------------------------------------------------------------- 1 | AuthType=Office365;Url=[dynamics-crm-url];Username=[username];Password=[password] -------------------------------------------------------------------------------- /k8s/dcrm/8.0/ltsc2022/overrides/xp1/secrets/sitecore-data-exchange-staging.txt: -------------------------------------------------------------------------------- 1 | user id=[user-id];password=[password];data source=[data-source];database=[database] -------------------------------------------------------------------------------- /k8s/dcrm/8.0/ltsc2022/overrides/xp1/secrets/sitecore-dcrm.txt: -------------------------------------------------------------------------------- 1 | AuthType=Office365;Url=[dynamics-crm-url];Username=[username];Password=[password] -------------------------------------------------------------------------------- /k8s/dcrm/9.0/ltsc2019/overrides/xp1/secrets/sitecore-data-exchange-staging.txt: -------------------------------------------------------------------------------- 1 | user id=[user-id];password=[password];data source=[data-source];database=[database] -------------------------------------------------------------------------------- /k8s/dcrm/9.0/ltsc2019/overrides/xp1/secrets/sitecore-dcrm.txt: -------------------------------------------------------------------------------- 1 | AuthType=Office365;Url=[dynamics-crm-url];Username=[username];Password=[password] -------------------------------------------------------------------------------- /k8s/dcrm/9.0/ltsc2022/overrides/xp1/secrets/sitecore-data-exchange-staging.txt: -------------------------------------------------------------------------------- 1 | user id=[user-id];password=[password];data source=[data-source];database=[database] -------------------------------------------------------------------------------- /k8s/dcrm/9.0/ltsc2022/overrides/xp1/secrets/sitecore-dcrm.txt: -------------------------------------------------------------------------------- 1 | AuthType=Office365;Url=[dynamics-crm-url];Username=[username];Password=[password] -------------------------------------------------------------------------------- /k8s/def-ts/7.0/ltsc2019/overrides/xp1/secrets/tenant-service-xconnect-collection.txt: -------------------------------------------------------------------------------- 1 | [xconnect collection endpoint] -------------------------------------------------------------------------------- /k8s/def-ts/8.0/ltsc2019/overrides/xp1/secrets/tenant-service-xconnect-collection.txt: -------------------------------------------------------------------------------- 1 | [xconnect collection endpoint] -------------------------------------------------------------------------------- /k8s/def-ts/8.0/ltsc2022/overrides/xp1/secrets/tenant-service-xconnect-collection.txt: -------------------------------------------------------------------------------- 1 | [xconnect collection endpoint] -------------------------------------------------------------------------------- /k8s/def-ts/9.0/ltsc2022/overrides/xp1/secrets/tenant-service-xconnect-collection.txt: -------------------------------------------------------------------------------- 1 | [xconnect collection endpoint] -------------------------------------------------------------------------------- /k8s/def/6.0/ltsc2019/overrides/xm1/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://ts.globalhost 2 | -------------------------------------------------------------------------------- /k8s/def/6.0/ltsc2019/overrides/xp1/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://ts.globalhost -------------------------------------------------------------------------------- /k8s/def/7.0/ltsc2019/overrides/xp1/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://ts.globalhost -------------------------------------------------------------------------------- /k8s/def/8.0/ltsc2019/overrides/xp1/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://ts.globalhost -------------------------------------------------------------------------------- /k8s/def/8.0/ltsc2022/overrides/xp1/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://ts.globalhost -------------------------------------------------------------------------------- /k8s/def/9.0/ltsc2022/overrides/xp1/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://ts.globalhost -------------------------------------------------------------------------------- /k8s/horizon/10.1/ltsc2019/overrides/xm1/secrets/tls/global-hrz/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for hrz.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/horizon/10.1/ltsc2019/overrides/xp1/secrets/tls/global-hrz/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for hrz.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2019/overlays/xm1/init/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | bases: 5 | - ../../../xm1/init 6 | 7 | -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2019/overlays/xm1/secrets/tls/global-hrz/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for hrz.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2019/overlays/xp1/init/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | bases: 5 | - ../../../xp1/init 6 | 7 | -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2019/overlays/xp1/secrets/tls/global-hrz/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for hrz.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2022/overlays/xm1/init/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | bases: 5 | - ../../../xm1/init -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2022/overlays/xm1/secrets/tls/global-hrz/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for hrz.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2022/overlays/xp1/init/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | bases: 5 | - ../../../xp1/init -------------------------------------------------------------------------------- /k8s/horizon/10.2/ltsc2022/overlays/xp1/secrets/tls/global-hrz/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for hrz.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sfmcbde-ts/7.0/ltsc2019/overrides/secrets/sitecore-tenant-service-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://[tenantservice] 2 | -------------------------------------------------------------------------------- /k8s/sfmcbde-ts/7.0/ltsc2019/overrides/secrets/tenant-service-sfmcjourney-executeurl.txt: -------------------------------------------------------------------------------- 1 | https://[ts-hostname]/api/tenantservice?id={{tenantserviceendpoint}} 2 | -------------------------------------------------------------------------------- /k8s/sfmcbde-ts/7.0/ltsc2019/overrides/secrets/tenant-service-xdbreferencedata-client.txt: -------------------------------------------------------------------------------- 1 | http://[xdbrefedata] 2 | -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/ingress-nginx/configuration.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: nginx-ingress-controller 5 | data: 6 | use-forwarded-headers: "true" -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/ingress-nginx/configuration.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: nginx-ingress-controller 5 | data: 6 | use-forwarded-headers: "true" -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.0/ltsc2019/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/ingress-nginx/configuration.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: nginx-ingress-controller 5 | data: 6 | use-forwarded-headers: "true" -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/ingress-nginx/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | resources: 5 | - ingress.yaml -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/ingress-nginx/configuration.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: ConfigMap 3 | metadata: 4 | name: nginx-ingress-controller 5 | data: 6 | use-forwarded-headers: "true" -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/ingress-nginx/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | resources: 5 | - ingress.yaml -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.1/ltsc2019/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xm1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.1.0 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xm1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.2 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xp1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.1.0 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xp1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.2 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2019/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xm1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.1.0 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xm1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.2 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xp1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.1.0 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xp1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.2 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.2/ltsc2022/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xm1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.0 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xm1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.2 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xp1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.0 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xp1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.2 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2019/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xm1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.0 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xm1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.2 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xp1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.2.0 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xp1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.2 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.3/ltsc2022/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xm1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xm1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.4.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xp1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xp1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.4.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/tls/global-authority/readme: -------------------------------------------------------------------------------- 1 | Add generated root certificate authority to this folder: 2 | root.crt -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/tls/global-authority/readme: -------------------------------------------------------------------------------- 1 | Add generated root certificate authority to this folder: 2 | root.crt -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2019/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xm1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xm1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.4.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xm1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xm1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xp1/configuration/database-upgrade-from-version.txt: -------------------------------------------------------------------------------- 1 | 10.3.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xp1/configuration/database-upgrade-to-version.txt: -------------------------------------------------------------------------------- 1 | 10.4.0 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xp1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xp1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/upgrade/xp1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/tls/global-authority/readme: -------------------------------------------------------------------------------- 1 | Add generated root certificate authority to this folder: 2 | root.crt -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xm1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-graphql-uploadmedia_encryptionkey.txt: -------------------------------------------------------------------------------- 1 | 432A462D4A614E64 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-media-request-protection-shared-secret.txt: -------------------------------------------------------------------------------- 1 | HQ(NjM(u6_5koVla-cTf4ta8x1h6Sb+ZcUQrULUz-0Afpx0cx-NuMtIoQkpDFmX5 -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/tls/global-authority/readme: -------------------------------------------------------------------------------- 1 | Add generated root certificate authority to this folder: 2 | root.crt -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/tls/global-cd/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cd.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/tls/global-cm/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for cm.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /k8s/sxp/10.4/ltsc2022/xp1/secrets/tls/global-id/readme: -------------------------------------------------------------------------------- 1 | Add TLS certificate for id.globalhost host to this folder: 2 | tls.crt 3 | tls.key -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-bizfx-currency.txt: -------------------------------------------------------------------------------- 1 | USD -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-bizfx-language.txt: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-bizfx-shopname.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineDefaultStorefront -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-connect-clientid.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineConnect -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-connect-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,defaultDatabase=1,allowAdmin=true,syncTimeout=3600000 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xc/commerce-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-adminpassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-core-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-databasepassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-reportingapikey.txt: -------------------------------------------------------------------------------- 1 | 00112233445566778899AABBCCDDEEFF -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-web-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.0/k8s-commerce-xc1/secrets/xp/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /sxc/10.0/scripts/FakeLicenseFile.txt: -------------------------------------------------------------------------------- 1 | ThisIsAFakeLicense -------------------------------------------------------------------------------- /sxc/10.0/xc0/xconnect/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.0/xc0/xconnect/keep.txt -------------------------------------------------------------------------------- /sxc/10.0/xc1/cd/Permissions/AdditionalWriteAllowedFolders.txt: -------------------------------------------------------------------------------- 1 | C:\inetpub\wwwroot\App_Config\Security-Shared -------------------------------------------------------------------------------- /sxc/10.0/xc1/cm/Permissions/AdditionalWriteAllowedFolders.txt: -------------------------------------------------------------------------------- 1 | C:\inetpub\wwwroot\App_Config\Security-Shared -------------------------------------------------------------------------------- /sxc/10.0/xc1/prcrep/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.0/xc1/prcrep/keep.txt -------------------------------------------------------------------------------- /sxc/10.0/xc1/xdbautomation/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.0/xc1/xdbautomation/keep.txt -------------------------------------------------------------------------------- /sxc/10.0/xc1/xdbcollection/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.0/xc1/xdbcollection/keep.txt -------------------------------------------------------------------------------- /sxc/10.0/xc1/xdbsearch/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.0/xc1/xdbsearch/keep.txt -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/ingress-nginx/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | resources: 5 | - ingress.yaml -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-bizfx-currency.txt: -------------------------------------------------------------------------------- 1 | USD -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-bizfx-language.txt: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-bizfx-shopname.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineDefaultStorefront -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-connect-clientid.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineConnect -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-connect-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,defaultDatabase=1,allowAdmin=true,syncTimeout=3600000 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-engine-archive-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_ArchiveSharedEnvironments -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-engine-database-masterkey-password.txt: -------------------------------------------------------------------------------- 1 | a3X8tA3FRMZf3xKN! -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-engine-shared-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_SharedEnvironments -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xc/commerce-solr-prefix-name.txt: -------------------------------------------------------------------------------- 1 | commerce -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-adminpassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-core-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-databasepassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-reportingapikey.txt: -------------------------------------------------------------------------------- 1 | 00112233445566778899AABBCCDDEEFF -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-web-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.1/k8s-commerce-xc1/secrets/xp/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /sxc/10.1/scripts/FakeLicenseFile.txt: -------------------------------------------------------------------------------- 1 | ThisIsAFakeLicense -------------------------------------------------------------------------------- /sxc/10.1/xc-resources/.env: -------------------------------------------------------------------------------- 1 | BASE_SITECORE_DOCKER_REGISTRY=scr.sitecore.com/base/ 2 | 3 | XP_SITECORE_DOCKER_REGISTRY=scr.sitecore.com/sxp/ 4 | XP_SITECORE_TAG=10.1-ltsc2019 5 | ISOLATION=default 6 | -------------------------------------------------------------------------------- /sxc/10.1/xc-resources/resources/configs/bizfx.txt: -------------------------------------------------------------------------------- 1 | bizfx\LogMonitor\LogMonitorConfig.json -------------------------------------------------------------------------------- /sxc/10.1/xc-resources/resources/configs/cdcxa.txt: -------------------------------------------------------------------------------- 1 | cdcxa\inetpub\wwwroot\App_Config\Include\Sitecore.Commerce.XA.CustomSolrCorePrefixName.config 2 | cdcxa\xdts\Web.config.xdt -------------------------------------------------------------------------------- /sxc/10.1/xc-resources/resources/configs/cmcxa.txt: -------------------------------------------------------------------------------- 1 | cmcxa\inetpub\wwwroot\App_Config\Include\Sitecore.Commerce.XA.CustomSolrCorePrefixName.config 2 | cmcxa\xdts\Web.config.xdt -------------------------------------------------------------------------------- /sxc/10.1/xc-resources/resources/configs/engine.txt: -------------------------------------------------------------------------------- 1 | engine\LogMonitor\LogMonitorConfig.json 2 | engine\HealthChecks\HealthCheck.ps1 -------------------------------------------------------------------------------- /sxc/10.1/xc-resources/resources/content/cd/Permissions/AdditionalWriteAllowedFolders.txt: -------------------------------------------------------------------------------- 1 | C:\inetpub\wwwroot\App_Config\Security-Shared -------------------------------------------------------------------------------- /sxc/10.1/xc0/cm/readme: -------------------------------------------------------------------------------- 1 | Add Commerce XP0 CM assets here -------------------------------------------------------------------------------- /sxc/10.1/xc0/xconnect/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.1/xc0/xconnect/keep.txt -------------------------------------------------------------------------------- /sxc/10.1/xc1/cd/readme: -------------------------------------------------------------------------------- 1 | Add Commerce XP1 CD assets here -------------------------------------------------------------------------------- /sxc/10.1/xc1/cm/readme: -------------------------------------------------------------------------------- 1 | Add Commerce XP1 CM assets here -------------------------------------------------------------------------------- /sxc/10.1/xc1/prcrep/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.1/xc1/prcrep/keep.txt -------------------------------------------------------------------------------- /sxc/10.1/xc1/xdbautomation/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.1/xc1/xdbautomation/keep.txt -------------------------------------------------------------------------------- /sxc/10.1/xc1/xdbcollection/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.1/xc1/xdbcollection/keep.txt -------------------------------------------------------------------------------- /sxc/10.1/xc1/xdbsearch/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.1/xc1/xdbsearch/keep.txt -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/bizfx-hostname: -------------------------------------------------------------------------------- 1 | bizfx.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/engine-authoring-hostname: -------------------------------------------------------------------------------- 1 | authoring.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/engine-minions-hostname: -------------------------------------------------------------------------------- 1 | minions.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/engine-shops-hostname: -------------------------------------------------------------------------------- 1 | shops.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-bizfx-currency.txt: -------------------------------------------------------------------------------- 1 | USD -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-bizfx-language.txt: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-bizfx-shopname.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineDefaultStorefront -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-connect-clientid.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineConnect -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-connect-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,defaultDatabase=1,allowAdmin=true,syncTimeout=3600000 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-engine-archive-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_ArchiveSharedEnvironments -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-engine-database-masterkey-password.txt: -------------------------------------------------------------------------------- 1 | a3X8tA3FRMZf3xKN! -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-engine-shared-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_SharedEnvironments -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xc/commerce-solr-prefix-name.txt: -------------------------------------------------------------------------------- 1 | commerce -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-adminpassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-core-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-databasepassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-reportingapikey.txt: -------------------------------------------------------------------------------- 1 | 00112233445566778899AABBCCDDEEFF -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-web-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.2/k8s-commerce-xc1/secrets/xp/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/commerce-engine-archive-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_ArchiveSharedEnvironments -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/commerce-engine-database-masterkey-password.txt: -------------------------------------------------------------------------------- 1 | a3X8tA3FRMZf3xKN! -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/commerce-engine-global-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_Global -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/commerce-engine-shared-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_SharedEnvironments -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/is-always-encrypted.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/sql-database-prefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /sxc/10.2/upgrade/k8s-sitecore-xc1/configuration/sql-server.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /sxc/10.2/xc0/cm/readme: -------------------------------------------------------------------------------- 1 | Add Commerce custom XP0 CM content here -------------------------------------------------------------------------------- /sxc/10.2/xc0/xconnect/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.2/xc0/xconnect/keep.txt -------------------------------------------------------------------------------- /sxc/10.2/xc1/cd/readme: -------------------------------------------------------------------------------- 1 | Add Commerce custom XP1 CD content here -------------------------------------------------------------------------------- /sxc/10.2/xc1/cm/readme: -------------------------------------------------------------------------------- 1 | Add Commerce custom XP1 CM content here -------------------------------------------------------------------------------- /sxc/10.2/xc1/prcrep/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.2/xc1/prcrep/keep.txt -------------------------------------------------------------------------------- /sxc/10.2/xc1/xdbautomation/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.2/xc1/xdbautomation/keep.txt -------------------------------------------------------------------------------- /sxc/10.2/xc1/xdbcollection/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.2/xc1/xdbcollection/keep.txt -------------------------------------------------------------------------------- /sxc/10.2/xc1/xdbsearch/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.2/xc1/xdbsearch/keep.txt -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/bizfx-hostname: -------------------------------------------------------------------------------- 1 | bizfx.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/cd-hostname: -------------------------------------------------------------------------------- 1 | cd.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/cm-hostname: -------------------------------------------------------------------------------- 1 | cm.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/engine-authoring-hostname: -------------------------------------------------------------------------------- 1 | authoring.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/engine-minions-hostname: -------------------------------------------------------------------------------- 1 | minions.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/engine-shops-hostname: -------------------------------------------------------------------------------- 1 | shops.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/configmaps/id-hostname: -------------------------------------------------------------------------------- 1 | id.globalhost -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-bizfx-currency.txt: -------------------------------------------------------------------------------- 1 | USD -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-bizfx-language.txt: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-bizfx-shopname.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineDefaultStorefront -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-connect-clientid.txt: -------------------------------------------------------------------------------- 1 | CommerceEngineConnect -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-connect-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,defaultDatabase=1,allowAdmin=true,syncTimeout=3600000 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-engine-archive-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_ArchiveSharedEnvironments -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-engine-database-masterkey-password.txt: -------------------------------------------------------------------------------- 1 | a3X8tA3FRMZf3xKN! -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-engine-shared-databasename.txt: -------------------------------------------------------------------------------- 1 | SitecoreCommerce_SharedEnvironments -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xc/commerce-solr-prefix-name.txt: -------------------------------------------------------------------------------- 1 | commerce -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-adminpassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-collection-shardmapmanager-database-username.txt: -------------------------------------------------------------------------------- 1 | shardmapmanageruser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-core-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-core-database-username.txt: -------------------------------------------------------------------------------- 1 | coreuser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-databasepassword.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-databaseprefix.txt: -------------------------------------------------------------------------------- 1 | Sitecore -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-databaseservername.txt: -------------------------------------------------------------------------------- 1 | mssql -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-databaseusername.txt: -------------------------------------------------------------------------------- 1 | sa -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-exm-master-database-username.txt: -------------------------------------------------------------------------------- 1 | exmmasteruser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-forms-database-username.txt: -------------------------------------------------------------------------------- 1 | formsuser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-log-level-value.txt: -------------------------------------------------------------------------------- 1 | INFO -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-marketing-automation-database-username.txt: -------------------------------------------------------------------------------- 1 | mauser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-master-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-master-database-username.txt: -------------------------------------------------------------------------------- 1 | masteruser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-messaging-database-username.txt: -------------------------------------------------------------------------------- 1 | messaginguser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-storage-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginestorageuser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-engine-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingenginetasksuser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-pools-database-username.txt: -------------------------------------------------------------------------------- 1 | processingpoolsuser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-processing-tasks-database-username.txt: -------------------------------------------------------------------------------- 1 | processingtasksuser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-redis-connection-string.txt: -------------------------------------------------------------------------------- 1 | redis:6379,ssl=False,abortConnect=False -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-reference-data-database-username.txt: -------------------------------------------------------------------------------- 1 | refdatauser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-reporting-database-username.txt: -------------------------------------------------------------------------------- 1 | reportinguser -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-reportingapikey.txt: -------------------------------------------------------------------------------- 1 | 00112233445566778899AABBCCDDEEFF -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string-xdb.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr/sitecore_xdb;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-solr-connection-string.txt: -------------------------------------------------------------------------------- 1 | http://solr:8983/solr;solrCloud=true -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-solr-core-prefix-name.txt: -------------------------------------------------------------------------------- 1 | sitecore -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-web-database-password.txt: -------------------------------------------------------------------------------- 1 | Password12345 -------------------------------------------------------------------------------- /sxc/10.3/k8s-commerce-xc1/secrets/xp/sitecore-web-database-username.txt: -------------------------------------------------------------------------------- 1 | webuser -------------------------------------------------------------------------------- /sxc/10.3/xc0/cm/readme: -------------------------------------------------------------------------------- 1 | Add Commerce custom XP0 CM content here -------------------------------------------------------------------------------- /sxc/10.3/xc0/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /sxc/10.3/xc0/xconnect/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.3/xc0/xconnect/keep.txt -------------------------------------------------------------------------------- /sxc/10.3/xc1-cxa/device-detection-data/readme.md: -------------------------------------------------------------------------------- 1 | device detection database will be mounted here -------------------------------------------------------------------------------- /sxc/10.3/xc1/cd/readme: -------------------------------------------------------------------------------- 1 | Add Commerce custom XP1 CD content here -------------------------------------------------------------------------------- /sxc/10.3/xc1/cm/readme: -------------------------------------------------------------------------------- 1 | Add Commerce custom XP1 CM content here -------------------------------------------------------------------------------- /sxc/10.3/xc1/prcrep/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.3/xc1/prcrep/keep.txt -------------------------------------------------------------------------------- /sxc/10.3/xc1/xdbautomation/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.3/xc1/xdbautomation/keep.txt -------------------------------------------------------------------------------- /sxc/10.3/xc1/xdbcollection/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.3/xc1/xdbcollection/keep.txt -------------------------------------------------------------------------------- /sxc/10.3/xc1/xdbsearch/keep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sitecore/container-deployment/72ba649670f8d26990c7a58ffe86f626e52f2caa/sxc/10.3/xc1/xdbsearch/keep.txt --------------------------------------------------------------------------------