File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,13 @@ pipeline {
3737 full_image_name = " ${ homer_image_name} :${ tag} "
3838 }
3939 cluster = params. cluster
40- namespace = params. namespace
40+ /* in production the 'content-v1' namespace is named 'squidex',
41+ so we are overriding it here */
42+ if (params. namespace == ' content-v1' && cluster == ' production' ) {
43+ namespace = ' squidex'
44+ } else {
45+ namespace = params. namespace
46+ }
4147 helm_data_file = " ${ cluster} /${ namespace} .yaml"
4248 }
4349 }
Original file line number Diff line number Diff line change 4444 - containerPort : 80
4545 env :
4646 # The following can be set to create an admin user
47+ - name : ASSETS__DEFAULTPAGESIZE
48+ value : ' 400'
4749 - name : CONTENTS__DEFAULTPAGESIZE
4850 value : ' 400'
4951 - name : IDENTITY__ADMINRECREATE
You can’t perform that action at this time.
0 commit comments