-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(e2e): validate that pulling from an acr registry attached to aks…
… via --attach-acr with karpenter nodes works (#457) * test(e2e): validate that pulling from an acr registry attached to aks via --attach-acr with karpenter nodes works * fix: ci * test: ci * fix: crd validation breaks on local so accidentally committed the change with it disabled * fix: passing in azure acr name from env rather than using makefile default * fix: ci again? * fix: nit comments addressed * test: only provisioning one pod
- Loading branch information
1 parent
a43b994
commit 1797b30
Showing
6 changed files
with
96 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
Portions Copyright (c) Microsoft Corporation. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package acr | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"testing" | ||
"time" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
v1 "k8s.io/api/core/v1" | ||
|
||
"github.com/Azure/karpenter-provider-azure/pkg/apis/v1alpha2" | ||
"github.com/Azure/karpenter-provider-azure/test/pkg/environment/azure" | ||
"k8s.io/apimachinery/pkg/api/resource" | ||
"k8s.io/apimachinery/pkg/labels" | ||
corev1beta1 "sigs.k8s.io/karpenter/pkg/apis/v1beta1" | ||
"sigs.k8s.io/karpenter/pkg/test" | ||
) | ||
|
||
var env *azure.Environment | ||
var nodeClass *v1alpha2.AKSNodeClass | ||
var nodePool *corev1beta1.NodePool | ||
var pauseImage string | ||
|
||
func TestAcr(t *testing.T) { | ||
RegisterFailHandler(Fail) | ||
BeforeSuite(func() { | ||
env = azure.NewEnvironment(t) | ||
acrName := os.Getenv("AZURE_ACR_NAME") | ||
Expect(acrName).NotTo(BeEmpty(), "AZURE_ACR_NAME must be set for the acr test suite") | ||
pauseImage = fmt.Sprintf("%s.azurecr.io/pause:3.6", acrName) | ||
}) | ||
RunSpecs(t, "Acr") | ||
} | ||
|
||
var _ = BeforeEach(func() { | ||
env.BeforeEach() | ||
nodeClass = env.DefaultAKSNodeClass() | ||
nodePool = env.DefaultNodePool(nodeClass) | ||
}) | ||
var _ = AfterEach(func() { env.Cleanup() }) | ||
var _ = AfterEach(func() { env.AfterEach() }) | ||
|
||
var _ = Describe("Acr", func() { | ||
Describe("Image Pull", func() { | ||
It("should allow karpenter user pool nodes to pull images from the clusters attached acr", func() { | ||
deployment := test.Deployment(test.DeploymentOptions{ | ||
Replicas: 1, | ||
PodOptions: test.PodOptions{ | ||
ResourceRequirements: v1.ResourceRequirements{ | ||
Requests: v1.ResourceList{ | ||
v1.ResourceCPU: resource.MustParse("1.1"), | ||
}, | ||
}, | ||
Image: pauseImage, | ||
}, | ||
}) | ||
|
||
env.ExpectCreated(nodePool, nodeClass, deployment) | ||
env.EventuallyExpectHealthyPodCountWithTimeout(time.Minute*15, labels.SelectorFromSet(deployment.Spec.Selector.MatchLabels), int(*deployment.Spec.Replicas)) | ||
}) | ||
}) | ||
}) |