Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
disable some prereq tests in airgapped (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
doronyaary-runai authored Aug 1, 2024
1 parent d6c8e5d commit cd0e059
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/cmd/cli/external_cluster_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func helmRepoReachable(t table.Writer) {

func ingressControllerExists(t table.Writer) {
testName := "Ingress Controller Installed"
exists, err := external_cluster_tests.NGINXIngressControllerInstalled()
exists, err := external_cluster_tests.IngressControllerInstalled()
if err != nil {
utils.AppendRowToTable(t, testName, false, err.Error())
} else {
Expand Down
2 changes: 1 addition & 1 deletion internal/external-cluster-tests/ingress_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

func NGINXIngressControllerInstalled() (bool, error) {
func IngressControllerInstalled() (bool, error) {
k8s, err := k8sclient.ClientSet()
if err != nil {
return false, err
Expand Down

0 comments on commit cd0e059

Please sign in to comment.