-
Notifications
You must be signed in to change notification settings - Fork 953
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
179 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
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 securitygroup | ||
|
||
import ( | ||
"context" | ||
"time" | ||
|
||
controllerruntime "sigs.k8s.io/controller-runtime" | ||
"sigs.k8s.io/controller-runtime/pkg/controller" | ||
"sigs.k8s.io/controller-runtime/pkg/manager" | ||
"sigs.k8s.io/controller-runtime/pkg/reconcile" | ||
|
||
corecontroller "sigs.k8s.io/karpenter/pkg/operator/controller" | ||
|
||
"github.com/aws/karpenter-provider-aws/pkg/apis/v1beta1" | ||
"github.com/aws/karpenter-provider-aws/pkg/providers/securitygroup" | ||
) | ||
|
||
type Controller struct { | ||
securitygroupProvider securitygroup.Provider | ||
} | ||
|
||
func NewController(securitygroupProvider securitygroup.Provider) *Controller { | ||
return &Controller{ | ||
securitygroupProvider: securitygroupProvider, | ||
} | ||
} | ||
|
||
func (c *Controller) Reconcile(ctx context.Context, nodeClass *v1beta1.EC2NodeClass) (reconcile.Result, error) { | ||
if err := c.securitygroupProvider.UpdateSecurityGroup(ctx, nodeClass); err != nil { | ||
return reconcile.Result{}, err | ||
} | ||
return reconcile.Result{RequeueAfter: 5 * time.Minute}, nil | ||
} | ||
|
||
func (c *Controller) Name() string { | ||
return "providers.securitygroup" | ||
} | ||
|
||
func (c *Controller) Builder(_ context.Context, m manager.Manager) corecontroller.Builder { | ||
return corecontroller.Adapt(controllerruntime. | ||
NewControllerManagedBy(m). | ||
For(&v1beta1.EC2NodeClass{}). | ||
WithOptions(controller.Options{ | ||
MaxConcurrentReconciles: 10, | ||
})) | ||
} |
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,59 @@ | ||
/* | ||
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 securitygroup_test | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
coreoptions "sigs.k8s.io/karpenter/pkg/operator/options" | ||
"sigs.k8s.io/karpenter/pkg/operator/scheme" | ||
coretest "sigs.k8s.io/karpenter/pkg/test" | ||
|
||
"github.com/aws/karpenter-provider-aws/pkg/apis" | ||
controllerspricing "github.com/aws/karpenter-provider-aws/pkg/controllers/providers/pricing" | ||
"github.com/aws/karpenter-provider-aws/pkg/operator/options" | ||
"github.com/aws/karpenter-provider-aws/pkg/test" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
. "knative.dev/pkg/logging/testing" | ||
) | ||
|
||
var ctx context.Context | ||
var stop context.CancelFunc | ||
var env *coretest.Environment | ||
var awsEnv *test.Environment | ||
var controller *controllerspricing.Controller | ||
|
||
func TestAWS(t *testing.T) { | ||
ctx = TestContextWithLogger(t) | ||
RegisterFailHandler(Fail) | ||
RunSpecs(t, "SecurityGroup") | ||
} | ||
|
||
var _ = BeforeSuite(func() { | ||
env = coretest.NewEnvironment(scheme.Scheme, coretest.WithCRDs(apis.CRDs...)) | ||
ctx = coreoptions.ToContext(ctx, coretest.Options()) | ||
ctx = options.ToContext(ctx, test.Options()) | ||
ctx, stop = context.WithCancel(ctx) | ||
awsEnv = test.NewEnvironment(ctx, env) | ||
controller = controllerspricing.NewController(awsEnv.PricingProvider) | ||
}) | ||
|
||
var _ = AfterSuite(func() { | ||
stop() | ||
Expect(env.Stop()).To(Succeed(), "Failed to stop environment") | ||
}) |
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
Oops, something went wrong.