Skip to content

Commit

Permalink
Merge pull request #68 from Sitecore/sfmcce/7.0.0.00210.245
Browse files Browse the repository at this point in the history
Add Sitecore Salesforce Marketing Cloud CE Container Deployment 7.0.0.00210.245
  • Loading branch information
sc-stenstorgaard authored Dec 6, 2021
2 parents ef86332 + 884fff7 commit f6ca5b8
Show file tree
Hide file tree
Showing 20 changed files with 148 additions and 0 deletions.
3 changes: 3 additions & 0 deletions compose/sfmcce/7.0/2009/xm1/.env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Connection string for Salesforce Marketing Cloud.
#Example: client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
SFMC_CONNECTIONSTRING=
5 changes: 5 additions & 0 deletions compose/sfmcce/7.0/2009/xm1/docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
cm:
image: sitecore-sfmcce-xm1-cm:${SITECORE_VERSION}
environment:
Sitecore_ConnectionStrings_sfmc: ${SFMC_CONNECTIONSTRING}
3 changes: 3 additions & 0 deletions compose/sfmcce/7.0/2009/xp0/.env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Connection string for Salesforce Marketing Cloud.
#Example: client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
SFMC_CONNECTIONSTRING=
5 changes: 5 additions & 0 deletions compose/sfmcce/7.0/2009/xp0/docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
cm:
image: sitecore-sfmcce-xp0-cm:${SITECORE_VERSION}
environment:
Sitecore_ConnectionStrings_sfmc: ${SFMC_CONNECTIONSTRING}
3 changes: 3 additions & 0 deletions compose/sfmcce/7.0/2009/xp1/.env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Connection string for Salesforce Marketing Cloud.
#Example: client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
SFMC_CONNECTIONSTRING=
5 changes: 5 additions & 0 deletions compose/sfmcce/7.0/2009/xp1/docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
cm:
image: sitecore-sfmcce-xp1-cm:${SITECORE_VERSION}
environment:
Sitecore_ConnectionStrings_sfmc: ${SFMC_CONNECTIONSTRING}
3 changes: 3 additions & 0 deletions compose/sfmcce/7.0/ltsc2019/xm1/.env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Connection string for Salesforce Marketing Cloud.
#Example: client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
SFMC_CONNECTIONSTRING=
5 changes: 5 additions & 0 deletions compose/sfmcce/7.0/ltsc2019/xm1/docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
cm:
image: sitecore-sfmcce-xm1-cm:${SITECORE_VERSION}
environment:
Sitecore_ConnectionStrings_sfmc: ${SFMC_CONNECTIONSTRING}
3 changes: 3 additions & 0 deletions compose/sfmcce/7.0/ltsc2019/xp0/.env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Connection string for Salesforce Marketing Cloud.
#Example: client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
SFMC_CONNECTIONSTRING=
5 changes: 5 additions & 0 deletions compose/sfmcce/7.0/ltsc2019/xp0/docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
cm:
image: sitecore-sfmcce-xp0-cm:${SITECORE_VERSION}
environment:
Sitecore_ConnectionStrings_sfmc: ${SFMC_CONNECTIONSTRING}
3 changes: 3 additions & 0 deletions compose/sfmcce/7.0/ltsc2019/xp1/.env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Connection string for Salesforce Marketing Cloud.
#Example: client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
SFMC_CONNECTIONSTRING=
5 changes: 5 additions & 0 deletions compose/sfmcce/7.0/ltsc2019/xp1/docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
cm:
image: sitecore-sfmcce-xp1-cm:${SITECORE_VERSION}
environment:
Sitecore_ConnectionStrings_sfmc: ${SFMC_CONNECTIONSTRING}
13 changes: 13 additions & 0 deletions k8s/sfmcce/7.0/ltsc2019/overrides/xm1/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

bases:
- ../../k8s-sitecore-xm1

images:
- name: scr.sitecore.com/sxp/sitecore-xm1-cm
newName: "{registry}/sitecore-sfmcce-xm1-cm"
newTag: tag

patchesStrategicMerge:
- patch-cm.yaml
23 changes: 23 additions & 0 deletions k8s/sfmcce/7.0/ltsc2019/overrides/xm1/patch-cm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: cm
spec:
selector:
matchLabels:
app: cm
template:
metadata:
labels:
app: cm
spec:
nodeSelector:
kubernetes.io/os: windows
containers:
- name: sitecore-xm1-cm
env:
- name: Sitecore_ConnectionStrings_sfmc
valueFrom:
secretKeyRef:
name: sitecore-salesforce-content-exchange
key: sitecore-salesforce-content-exchange-connection-string.txt
13 changes: 13 additions & 0 deletions k8s/sfmcce/7.0/ltsc2019/overrides/xm1/secrets/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

bases:
- ../../../k8s-sitecore-xm1/secrets

generatorOptions:
disableNameSuffixHash: true

secretGenerator:
- name: sitecore-salesforce-content-exchange
files:
- sitecore-salesforce-content-exchange-connection-string.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]
13 changes: 13 additions & 0 deletions k8s/sfmcce/7.0/ltsc2019/overrides/xp1/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

bases:
- ../../k8s-sitecore-xp1

images:
- name: scr.sitecore.com/sxp/sitecore-xp1-cm
newName: "{registry}/sitecore-sfmcce-xp1-cm"
newTag: tag

patchesStrategicMerge:
- patch-cm.yaml
23 changes: 23 additions & 0 deletions k8s/sfmcce/7.0/ltsc2019/overrides/xp1/patch-cm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: cm
spec:
selector:
matchLabels:
app: cm
template:
metadata:
labels:
app: cm
spec:
nodeSelector:
kubernetes.io/os: windows
containers:
- name: sitecore-xp1-cm
env:
- name: Sitecore_ConnectionStrings_sfmc
valueFrom:
secretKeyRef:
name: sitecore-salesforce-content-exchange
key: sitecore-salesforce-content-exchange-connection-string.txt
13 changes: 13 additions & 0 deletions k8s/sfmcce/7.0/ltsc2019/overrides/xp1/secrets/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

bases:
- ../../../k8s-sitecore-xp1/secrets

generatorOptions:
disableNameSuffixHash: true

secretGenerator:
- name: sitecore-salesforce-content-exchange
files:
- sitecore-salesforce-content-exchange-connection-string.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
client id=[client id];client secret=[client secret];auth endpoint=[auth endpoint];rest endpoint=[rest endpoint];soap endpoint=[soap endpoint]

0 comments on commit f6ca5b8

Please sign in to comment.