Skip to content

Helm Charts have been rename to 'redhat-' prefix #480

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions test/test_shared_helm_cakephp_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class TestHelmCakePHPTemplate:

def setup_method(self):
package_name = "php-cakephp-application"
package_name = "redhat-php-cakephp-application"
path = test_dir
self.hc_api = HelmChartsAPI(path=path, package_name=package_name, tarball_dir=test_dir, remote=True)
self.hc_api.clone_helm_chart_repo(
Expand All @@ -50,10 +50,10 @@ def teardown_method(self):
def test_curl_connection(self):
if self.hc_api.oc_api.shared_cluster:
pytest.skip("Do NOT test on shared cluster")
self.hc_api.package_name = "php-imagestreams"
self.hc_api.package_name = "redhat-php-imagestreams"
assert self.hc_api.helm_package()
assert self.hc_api.helm_installation()
self.hc_api.package_name = "php-cakephp-application"
self.hc_api.package_name = "redhat-php-cakephp-application"
assert self.hc_api.helm_package()
assert self.hc_api.helm_installation(
values={
Expand All @@ -68,10 +68,10 @@ def test_curl_connection(self):
)

def test_by_helm_test(self):
self.hc_api.package_name = "php-imagestreams"
self.hc_api.package_name = "redhat-php-imagestreams"
assert self.hc_api.helm_package()
assert self.hc_api.helm_installation()
self.hc_api.package_name = "php-cakephp-application"
self.hc_api.package_name = "redhat-php-cakephp-application"
assert self.hc_api.helm_package()
assert self.hc_api.helm_installation(
values={
Expand Down
2 changes: 1 addition & 1 deletion test/test_shared_helm_chart_imagestreams.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class TestHelmRHELPHPImageStreams:

def setup_method(self):
package_name = "php-imagestreams"
package_name = "redhat-php-imagestreams"
path = test_dir
self.hc_api = HelmChartsAPI(path=path, package_name=package_name, tarball_dir=test_dir, remote=True)
self.hc_api.clone_helm_chart_repo(
Expand Down