Skip to content

Commit

Permalink
Update enable_globalnet flag to be defaut false
Browse files Browse the repository at this point in the history
Signed-off-by: Shylesh Kumar Mohan <[email protected]>
  • Loading branch information
shylesh committed Oct 31, 2023
1 parent a890fa4 commit 2bc663a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ higher priority).
* `storageclassnames` - Under this key, custom storage class names for `cephFilesystems`, `cephObjectStores`, `cephBlockPools`, `cephNonResilientPools`, `nfs` and for `encryption` are defined.
* `submariner_source` - Source from which we take submariner build, ex: upstream, downstream, downstream_unreleased
* `submariner_release_type` - Released OR Unreleased submariner build
* `enable_globalnet` - enable or disable globalnet for submariner
* `enable_globalnet` - enable or disable globalnet for submariner, default: true
* `submariner_unreleased_channel` - submariner channel for unreleased downstream build

#### UPGRADE
Expand Down
2 changes: 2 additions & 0 deletions conf/ocsci/disable_globalnet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ENV_DATA:
enable_globalnet: false
2 changes: 0 additions & 2 deletions conf/ocsci/enable_globalnet.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion ocs_ci/deployment/acm.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def create_acm_brew_icsp(self):
This is a prereq for downstream unreleased submariner
"""
icsp_data = templating.load_yaml(constants.ACM_DOWNSTREAM_BREW_ICSP)
icsp_data = templating.load_yaml(constants.SUBMARINER_DOWNSTREAM_BREW_ICSP)
icsp_data_yaml = tempfile.NamedTemporaryFile(
mode="w+", prefix="acm_icsp", delete=False
)
Expand Down
4 changes: 2 additions & 2 deletions ocs_ci/ocs/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2113,8 +2113,8 @@
ACM_HUB_UNRELEASED_ICSP_YAML = os.path.join(
TEMPLATE_DIR, "acm-deployment", "imagecontentsourcepolicy.yaml"
)
ACM_DOWNSTREAM_BREW_ICSP = os.path.join(
TEMPLATE_DIR, "acm-deployment", "acm_downstream_brew_icsp.yaml"
SUBMARINER_DOWNSTREAM_BREW_ICSP = os.path.join(
TEMPLATE_DIR, "acm-deployment", "submariner_downstream_brew_icsp.yaml"
)
ACM_HUB_UNRELEASED_PULL_SECRET_TEMPLATE = "pull-secret.yaml.j2"
ACM_ODF_MULTICLUSTER_ORCHESTRATOR_RESOURCE = "odf-multicluster-orchestrator"
Expand Down

0 comments on commit 2bc663a

Please sign in to comment.