diff --git a/e2e/assets/single-cluster/helm-oci.yaml b/e2e/assets/single-cluster/helm-oci.yaml index c7c1c72b5e..63824472db 100644 --- a/e2e/assets/single-cluster/helm-oci.yaml +++ b/e2e/assets/single-cluster/helm-oci.yaml @@ -4,6 +4,7 @@ metadata: name: helm spec: repo: https://github.com/rancher/fleet-test-data + branch: helm-oci-configmap-chart paths: - helm-oci targets: diff --git a/e2e/single-cluster/single_cluster_test.go b/e2e/single-cluster/single_cluster_test.go index d3d699089b..7aa88b393e 100644 --- a/e2e/single-cluster/single_cluster_test.go +++ b/e2e/single-cluster/single_cluster_test.go @@ -39,9 +39,9 @@ var _ = Describe("Single Cluster Deployments", func() { It("deploys the helm chart", func() { Eventually(func() string { - out, _ := k.Namespace("fleet-helm-oci-example").Get("pods") + out, _ := k.Namespace("fleet-helm-oci-example").Get("configmaps") return out - }).Should(ContainSubstring("frontend-")) + }).Should(ContainSubstring("fleet-test-configmap")) }) })