mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-21 15:08:06 +00:00

* Move controller package inside internal directory Based on the go/v4 project structure, the following changed: - Pakcage `controllers` is now named `controller` - Package `controller` now lives inside new `internal` directory * Move main.go in cmd directory Based on the new go/v4 project structure, `main.go` now lives in the `cmd` directory. * Change package import in main.go * Update go mod dependencies Update the dependencies based on the versions obtained by creating a new operator project using `kubebuilder init --domain onepassword.com --plugins=go/v4`. This is based on the migration steps provided to go from go/v3 to go/v4 (https://book.kubebuilder.io/migration/migration_guide_gov3_to_gov4) * Update vendor * Adjust code for breaking changes from pkg update sigs.k8s.io/controller-runtime package had breaking changes from v0.14.5 to v0.16.3. This commit brings the changes needed to achieve the same things using the new functionality avaialble. * Adjust paths to connect yaml files Since `main.go` is now in `cmd` directory, the paths to the files for deploying Connect have to be adjusted based on the new location `main.go` is executed from. * Update files based on new structure and scaffolding These changes are made based on the new project structure and scaffolding obtained when using the new go/v4 project structure. These were done based on the migration steps mentioned when migrating to go/v4 (https://book.kubebuilder.io/migration/migration_guide_gov3_to_gov4). * Update config files These updates are made based on the Kustomize v4 syntax. This is part of the upgrate to go/v4 (https://book.kubebuilder.io/migration/migration_guide_gov3_to_gov4) * Update dependencies and GO version * Update vendor * Update Kubernetes tools versions * Update operator version in Makefile Now the version in the Makefile matches the version of the operator * Update Operator SDK version in version.go * Adjust generated deepcopy It seems that the +build tag is no longer needed based on the latest generated scaffolding, therefore it's removed. * Update copyright year * Bring back missing changes from migration Some customization in Makefile was lost during the migration process. Specifically, the namespace customization for `make deploy` command. Also, we push changes to kustomization.yaml for making the deploy process smoother. * Add RBAC perms for coordination.k8s.io It seems that with the latest changes to Kubernetes and Kustomize, we need to add additional RBAC to the service account used so that it can properly access the `leases` resource. * Optimize Dockerfile Dockerfile had a step for caching dependencies (go mod download). However, this is already done by the vendor directory, which we include. Therefore, this step can be removed to make the image build time faster.
419 lines
12 KiB
Go
419 lines
12 KiB
Go
package controller
|
|
|
|
import (
|
|
"context"
|
|
"github.com/1Password/connect-sdk-go/onepassword"
|
|
"github.com/1Password/onepassword-operator/pkg/mocks"
|
|
op "github.com/1Password/onepassword-operator/pkg/onepassword"
|
|
"time"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
|
|
appsv1 "k8s.io/api/apps/v1"
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
onepasswordv1 "github.com/1Password/onepassword-operator/api/v1"
|
|
)
|
|
|
|
const (
|
|
deploymentKind = "Deployment"
|
|
deploymentAPIVersion = "v1"
|
|
deploymentName = "test-deployment"
|
|
)
|
|
|
|
var _ = Describe("Deployment controller", func() {
|
|
var ctx context.Context
|
|
var deploymentKey types.NamespacedName
|
|
var secretKey types.NamespacedName
|
|
var deploymentResource *appsv1.Deployment
|
|
createdSecret := &v1.Secret{}
|
|
|
|
makeDeployment := func() {
|
|
ctx = context.Background()
|
|
|
|
deploymentKey = types.NamespacedName{
|
|
Name: deploymentName,
|
|
Namespace: namespace,
|
|
}
|
|
|
|
secretKey = types.NamespacedName{
|
|
Name: item1.Name,
|
|
Namespace: namespace,
|
|
}
|
|
|
|
By("Deploying a pod with proper annotations successfully")
|
|
deploymentResource = &appsv1.Deployment{
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: deploymentKind,
|
|
APIVersion: deploymentAPIVersion,
|
|
},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: deploymentKey.Name,
|
|
Namespace: deploymentKey.Namespace,
|
|
Annotations: map[string]string{
|
|
op.ItemPathAnnotation: item1.Path,
|
|
op.NameAnnotation: item1.Name,
|
|
},
|
|
},
|
|
Spec: appsv1.DeploymentSpec{
|
|
Template: v1.PodTemplateSpec{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Labels: map[string]string{"app": deploymentName},
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: deploymentName,
|
|
Image: "eu.gcr.io/kyma-project/example/http-db-service:0.0.6",
|
|
ImagePullPolicy: "IfNotPresent",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Selector: &metav1.LabelSelector{
|
|
MatchLabels: map[string]string{"app": deploymentName},
|
|
},
|
|
},
|
|
}
|
|
Expect(k8sClient.Create(ctx, deploymentResource)).Should(Succeed())
|
|
|
|
By("Creating the K8s secret successfully")
|
|
time.Sleep(time.Millisecond * 100)
|
|
Eventually(func() bool {
|
|
err := k8sClient.Get(ctx, secretKey, createdSecret)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return true
|
|
}, timeout, interval).Should(BeTrue())
|
|
Expect(createdSecret.Data).Should(Equal(item1.SecretData))
|
|
}
|
|
|
|
cleanK8sResources := func() {
|
|
// failed test runs that don't clean up leave resources behind.
|
|
err := k8sClient.DeleteAllOf(context.Background(), &onepasswordv1.OnePasswordItem{}, client.InNamespace(namespace))
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
err = k8sClient.DeleteAllOf(context.Background(), &v1.Secret{}, client.InNamespace(namespace))
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
err = k8sClient.DeleteAllOf(context.Background(), &appsv1.Deployment{}, client.InNamespace(namespace))
|
|
Expect(err).ToNot(HaveOccurred())
|
|
}
|
|
|
|
mockGetItemFunc := func() {
|
|
mocks.DoGetItemFunc = func(uuid string, vaultUUID string) (*onepassword.Item, error) {
|
|
item := onepassword.Item{}
|
|
item.Fields = []*onepassword.ItemField{}
|
|
for k, v := range item1.Data {
|
|
item.Fields = append(item.Fields, &onepassword.ItemField{Label: k, Value: v})
|
|
}
|
|
item.Version = item1.Version
|
|
item.Vault.ID = vaultUUID
|
|
item.ID = uuid
|
|
return &item, nil
|
|
}
|
|
}
|
|
|
|
BeforeEach(func() {
|
|
cleanK8sResources()
|
|
mockGetItemFunc()
|
|
time.Sleep(time.Second) // TODO: can we achieve that with ginkgo?
|
|
makeDeployment()
|
|
})
|
|
|
|
Context("Deployment with secrets from 1Password", func() {
|
|
It("Should delete secret if deployment is deleted", func() {
|
|
By("Deleting the pod")
|
|
Eventually(func() error {
|
|
f := &appsv1.Deployment{}
|
|
err := k8sClient.Get(ctx, deploymentKey, f)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return k8sClient.Delete(ctx, f)
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
Eventually(func() error {
|
|
f := &appsv1.Deployment{}
|
|
return k8sClient.Get(ctx, deploymentKey, f)
|
|
}, timeout, interval).ShouldNot(Succeed())
|
|
|
|
Eventually(func() error {
|
|
f := &v1.Secret{}
|
|
return k8sClient.Get(ctx, secretKey, f)
|
|
}, timeout, interval).ShouldNot(Succeed())
|
|
})
|
|
|
|
It("Should update existing K8s Secret using deployment", func() {
|
|
By("Updating secret")
|
|
mocks.DoGetItemFunc = func(uuid string, vaultUUID string) (*onepassword.Item, error) {
|
|
item := onepassword.Item{}
|
|
item.Fields = []*onepassword.ItemField{}
|
|
for k, v := range item2.Data {
|
|
item.Fields = append(item.Fields, &onepassword.ItemField{Label: k, Value: v})
|
|
}
|
|
item.Version = item2.Version
|
|
item.Vault.ID = vaultUUID
|
|
item.ID = uuid
|
|
return &item, nil
|
|
}
|
|
Eventually(func() error {
|
|
updatedDeployment := &appsv1.Deployment{
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: deploymentKind,
|
|
APIVersion: deploymentAPIVersion,
|
|
},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: deploymentKey.Name,
|
|
Namespace: deploymentKey.Namespace,
|
|
Annotations: map[string]string{
|
|
op.ItemPathAnnotation: item2.Path,
|
|
op.NameAnnotation: item1.Name,
|
|
},
|
|
},
|
|
Spec: appsv1.DeploymentSpec{
|
|
Template: v1.PodTemplateSpec{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Labels: map[string]string{"app": deploymentName},
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: deploymentName,
|
|
Image: "eu.gcr.io/kyma-project/example/http-db-service:0.0.6",
|
|
ImagePullPolicy: "IfNotPresent",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Selector: &metav1.LabelSelector{
|
|
MatchLabels: map[string]string{"app": deploymentName},
|
|
},
|
|
},
|
|
}
|
|
err := k8sClient.Update(ctx, updatedDeployment)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
// TODO: can we achieve the same without sleep?
|
|
time.Sleep(time.Millisecond * 10)
|
|
By("Reading updated K8s secret")
|
|
updatedSecret := &v1.Secret{}
|
|
Eventually(func() bool {
|
|
err := k8sClient.Get(ctx, secretKey, updatedSecret)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return true
|
|
}, timeout, interval).Should(BeTrue())
|
|
Expect(updatedSecret.Data).Should(Equal(item2.SecretData))
|
|
})
|
|
|
|
It("Should not update secret if Annotations have not changed", func() {
|
|
By("Updating secret without changing annotations")
|
|
Eventually(func() error {
|
|
updatedDeployment := &appsv1.Deployment{
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: deploymentKind,
|
|
APIVersion: deploymentAPIVersion,
|
|
},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: deploymentKey.Name,
|
|
Namespace: deploymentKey.Namespace,
|
|
Annotations: map[string]string{
|
|
op.ItemPathAnnotation: item1.Path,
|
|
op.NameAnnotation: item1.Name,
|
|
},
|
|
},
|
|
Spec: appsv1.DeploymentSpec{
|
|
Template: v1.PodTemplateSpec{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Labels: map[string]string{"app": deploymentName},
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: deploymentName,
|
|
Image: "eu.gcr.io/kyma-project/example/http-db-service:0.0.6",
|
|
ImagePullPolicy: "IfNotPresent",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Selector: &metav1.LabelSelector{
|
|
MatchLabels: map[string]string{"app": deploymentName},
|
|
},
|
|
},
|
|
}
|
|
err := k8sClient.Update(ctx, updatedDeployment)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
// TODO: can we achieve the same without sleep?
|
|
time.Sleep(time.Millisecond * 10)
|
|
By("Reading updated K8s secret")
|
|
updatedSecret := &v1.Secret{}
|
|
Eventually(func() bool {
|
|
err := k8sClient.Get(ctx, secretKey, updatedSecret)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return true
|
|
}, timeout, interval).Should(BeTrue())
|
|
Expect(updatedSecret.Data).Should(Equal(item1.SecretData))
|
|
})
|
|
|
|
It("Should not delete secret created via deployment if it's used in another container", func() {
|
|
By("Creating another POD with created secret")
|
|
anotherDeploymentKey := types.NamespacedName{
|
|
Name: "other-deployment",
|
|
Namespace: namespace,
|
|
}
|
|
Eventually(func() error {
|
|
anotherDeployment := &appsv1.Deployment{
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: deploymentKind,
|
|
APIVersion: deploymentAPIVersion,
|
|
},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: anotherDeploymentKey.Name,
|
|
Namespace: anotherDeploymentKey.Namespace,
|
|
},
|
|
Spec: appsv1.DeploymentSpec{
|
|
Template: v1.PodTemplateSpec{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Labels: map[string]string{"app": anotherDeploymentKey.Name},
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: anotherDeploymentKey.Name,
|
|
Image: "eu.gcr.io/kyma-project/example/http-db-service:0.0.6",
|
|
ImagePullPolicy: "IfNotPresent",
|
|
Env: []v1.EnvVar{
|
|
{
|
|
Name: anotherDeploymentKey.Name,
|
|
ValueFrom: &v1.EnvVarSource{
|
|
SecretKeyRef: &v1.SecretKeySelector{
|
|
LocalObjectReference: v1.LocalObjectReference{
|
|
Name: secretKey.Name,
|
|
},
|
|
Key: "password",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Selector: &metav1.LabelSelector{
|
|
MatchLabels: map[string]string{"app": anotherDeploymentKey.Name},
|
|
},
|
|
},
|
|
}
|
|
err := k8sClient.Create(ctx, anotherDeployment)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
By("Deleting the pod")
|
|
Eventually(func() error {
|
|
f := &appsv1.Deployment{}
|
|
err := k8sClient.Get(ctx, deploymentKey, f)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return k8sClient.Delete(ctx, f)
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
Eventually(func() error {
|
|
f := &v1.Secret{}
|
|
return k8sClient.Get(ctx, secretKey, f)
|
|
}, timeout, interval).Should(Succeed())
|
|
})
|
|
|
|
It("Should not delete secret created via deployment if it's used in another volume", func() {
|
|
By("Creating another POD with created secret")
|
|
anotherDeploymentKey := types.NamespacedName{
|
|
Name: "other-deployment",
|
|
Namespace: namespace,
|
|
}
|
|
Eventually(func() error {
|
|
anotherDeployment := &appsv1.Deployment{
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: deploymentKind,
|
|
APIVersion: deploymentAPIVersion,
|
|
},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: anotherDeploymentKey.Name,
|
|
Namespace: anotherDeploymentKey.Namespace,
|
|
},
|
|
Spec: appsv1.DeploymentSpec{
|
|
Template: v1.PodTemplateSpec{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Labels: map[string]string{"app": anotherDeploymentKey.Name},
|
|
},
|
|
Spec: v1.PodSpec{
|
|
Volumes: []v1.Volume{
|
|
{
|
|
Name: anotherDeploymentKey.Name,
|
|
VolumeSource: v1.VolumeSource{
|
|
Secret: &v1.SecretVolumeSource{
|
|
SecretName: secretKey.Name,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Containers: []v1.Container{
|
|
{
|
|
Name: anotherDeploymentKey.Name,
|
|
Image: "eu.gcr.io/kyma-project/example/http-db-service:0.0.6",
|
|
ImagePullPolicy: "IfNotPresent",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Selector: &metav1.LabelSelector{
|
|
MatchLabels: map[string]string{"app": anotherDeploymentKey.Name},
|
|
},
|
|
},
|
|
}
|
|
err := k8sClient.Create(ctx, anotherDeployment)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
By("Deleting the pod")
|
|
Eventually(func() error {
|
|
f := &appsv1.Deployment{}
|
|
err := k8sClient.Get(ctx, deploymentKey, f)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return k8sClient.Delete(ctx, f)
|
|
}, timeout, interval).Should(Succeed())
|
|
|
|
Eventually(func() error {
|
|
f := &v1.Secret{}
|
|
return k8sClient.Get(ctx, secretKey, f)
|
|
}, timeout, interval).Should(Succeed())
|
|
})
|
|
})
|
|
})
|