File tree 1 file changed +6
-5
lines changed
.werft/jobs/build/installer 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -173,14 +173,15 @@ EOF`);
173
173
}
174
174
175
175
private configureStripeApiKeys ( slice : string ) {
176
- exec ( `echo copying stripe-api-keys secret to preview environment...` ) ;
176
+ exec ( `echo copying stripe-api-keys secret to preview environment...` , { slice } ) ;
177
177
exec (
178
178
`kubectl --kubeconfig ${ CORE_DEV_KUBECONFIG_PATH } -n werft get secret stripe-api-keys -o yaml > stripe-api-keys.secret.yaml` ,
179
+ { slice } ,
179
180
) ;
180
- exec ( `yq w -i stripe-api-keys.secret.yaml metadata.namespace "default"` ) ;
181
- exec ( `kubectl --kubeconfig "${ this . options . kubeconfigPath } " apply -f stripe-api-keys.secret.yaml` ) ;
182
- exec ( `rm -f stripe-api-keys.secret.yaml` ) ;
183
- exec ( `echo copied stripe-api-keys secret to preview environment...` ) ;
181
+ exec ( `yq w -i stripe-api-keys.secret.yaml metadata.namespace "default"` , { slice } ) ;
182
+ exec ( `kubectl --kubeconfig "${ this . options . kubeconfigPath } " apply -f stripe-api-keys.secret.yaml` , { slice } ) ;
183
+ exec ( `rm -f stripe-api-keys.secret.yaml` , { slice } ) ;
184
+ exec ( `echo copied stripe-api-keys secret to preview environment...` , { slice } ) ;
184
185
}
185
186
186
187
// auth-provider-secret.yml is a file generated by this job by reading a secret from core-dev cluster
You can’t perform that action at this time.
0 commit comments