File tree Expand file tree Collapse file tree 5 files changed +1
-16
lines changed
.werft/jobs/build/installer
dev/preview/workflow/preview Expand file tree Collapse file tree 5 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ previewctl get-credentials --gcp-service-account "${PREVIEW_ENV_DEV_SA_KEY_PATH}
29
29
PREVIEW_NAME=" $( previewctl get-name --branch " ${INPUT_NAME} " ) "
30
30
export PREVIEW_NAME
31
31
32
- for var in WSMANAGER_MK2 WITH_DEDICATED_EMU WITH_EE_LICENSE ANALYTICS WORKSPACE_FEATURE_FLAGS; do
32
+ for var in WSMANAGER_MK2 WITH_DEDICATED_EMU ANALYTICS WORKSPACE_FEATURE_FLAGS; do
33
33
input_var=" INPUT_${var} "
34
34
if [[ -n " ${! input_var:- } " ]]; then
35
35
export GITPOD_${var} =${! input_var}
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ Does this PR require updates to the documentation at www.gitpod.io/docs?
47
47
<details >
48
48
<summary >Installer Options</summary >
49
49
50
- - [ ] with-ee-license
51
50
- [ ] with-dedicated-emulation
52
51
- [ ] with-ws-manager-mk2
53
52
- [ ] workspace-feature-flags
Original file line number Diff line number Diff line change 31
31
publish_to_jbmp : ${{ contains( steps.pr-details.outputs.pr_body, '[X] /werft publish-to-jb-marketplace') }}
32
32
with_ws_manager_mk2 : ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-ws-manager-mk2') }}
33
33
with_dedicated_emulation : ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-dedicated-emulation') }}
34
- with_ee_license : ${{ contains( steps.pr-details.outputs.pr_body, '[X] with-ee-license') }}
35
34
analytics : ${{ contains( steps.pr-details.outputs.pr_body, '[X] analytics') }}
36
35
workspace_feature_flags : ${{ steps.output.outputs.workspace_feature_flags }}
37
36
pr_no_diff_skip : ${{ steps.pr-diff.outputs.pr_no_diff_skip }}
@@ -298,7 +297,6 @@ jobs:
298
297
previewctl_hash : ${{ needs.build-previewctl.outputs.previewctl_hash }}
299
298
wsmanager_mk2 : ${{needs.configuration.outputs.with_ws_manager_mk2}}
300
299
with_dedicated_emulation : ${{needs.configuration.outputs.with_dedicated_emulation}}
301
- with_ee_license : ${{needs.configuration.outputs.with_ee_license}}
302
300
analytics : ${{needs.configuration.outputs.analytics}}
303
301
workspace_feature_flags : ${{needs.configuration.outputs.workspace_feature_flags}}
304
302
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ export class Installer {
30
30
PREVIEW_NAME : this . options . previewName ,
31
31
GITPOD_ANALYTICS : this . options . analytics ,
32
32
GITPOD_WORKSPACE_FEATURE_FLAGS : this . options . workspaceFeatureFlags . join ( " " ) ,
33
- GITPOD_WITH_EE_LICENSE : this . options . withEELicense ,
34
33
GITPOD_WITH_DEDICATED_EMU : this . options . withDedicatedEmulation ,
35
34
GITPOD_WSMANAGER_MK2 : this . options . useWsManagerMk2 ,
36
35
} ;
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ GITPOD_CONTAINER_REGISTRY_URL="eu.gcr.io/gitpod-core-dev/build/";
26
26
GITPOD_IMAGE_PULL_SECRET_NAME=" gcp-sa-registry-auth" ;
27
27
GITPOD_PROXY_SECRET_NAME=" proxy-config-certificates" ;
28
28
GITPOD_ANALYTICS=" ${GITPOD_ANALYTICS:- } "
29
- GITPOD_WITH_EE_LICENSE=" ${GITPOD_WITH_EE_LICENSE:- true} "
30
29
GITPOD_WORKSPACE_FEATURE_FLAGS=" ${GITPOD_WORKSPACE_FEATURE_FLAGS:- } "
31
30
GITPOD_WITH_DEDICATED_EMU=" ${GITPOD_WITH_DEDICATED_EMU:- false} "
32
31
GITPOD_WSMANAGER_MK2=" ${GITPOD_WSMANAGER_MK2:- false} "
@@ -535,16 +534,6 @@ installer --debug-version-file="/tmp/versions.yaml" render \
535
534
536
535
log_info " Post-processing"
537
536
538
- #
539
- # configureLicense
540
- #
541
- if [[ " ${GITPOD_WITH_EE_LICENSE} " == " true" ]]
542
- then
543
- readWerftSecret " gpsh-harvester-license" " license" > /tmp/license
544
- else
545
- touch /tmp/license
546
- fi
547
-
548
537
#
549
538
# configureWorkspaceFeatureFlags
550
539
#
You can’t perform that action at this time.
0 commit comments