Skip to content

Commit

Permalink
feat: add namespace for configmap resource
Browse files Browse the repository at this point in the history
  • Loading branch information
mishraprafful committed Nov 18, 2024
1 parent cea9552 commit 7249333
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 8 deletions.
7 changes: 5 additions & 2 deletions workspaces/backend/api/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ func TestAPI(t *testing.T) {
RunSpecs(t, "API Suite")
}

const namespaceName = "default"

var _ = BeforeSuite(func() {
logf.SetLogger(zap.New(zap.WriteTo(GinkgoWriter), zap.UseDevMode(true)))
ctx, cancel = context.WithCancel(context.Background())
Expand Down Expand Up @@ -177,8 +179,9 @@ func NewExampleWorkspaceKind(name string) *kubefloworgv1beta1.WorkspaceKind {
},
Logo: kubefloworgv1beta1.WorkspaceKindIcon{
ConfigMap: &kubefloworgv1beta1.WorkspaceKindConfigMap{
Name: "my-logos",
Key: "apple-touch-icon-152x152.png",
Name: "my-logos",
Namespace: namespaceName,
Key: "apple-touch-icon-152x152.png",
},
},
},
Expand Down
12 changes: 12 additions & 0 deletions workspaces/controller/api/v1beta1/workspacekind_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,21 @@ type WorkspaceKindIcon struct {
}

type WorkspaceKindConfigMap struct {

//+kubebuilder:validation:MinLength:=1
//+kubebuilder:validation:MaxLength:=253
//+kubebuilder:validation:Pattern:=^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
//+kubebuilder:example="my-logos"
Name string `json:"name"`

//+kubebuilder:validation:MinLength:=1
//+kubebuilder:validation:MaxLength:=63
//+kubebuilder:validation:Pattern:=^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
Namespace string `json:"namespace"`

//+kubebuilder:validation:MinLength:=1
//+kubebuilder:validation:MaxLength:=253
//+kubebuilder:validation:Pattern:=^[-._a-zA-Z0-9]+$
//+kubebuilder:example="apple-touch-icon-152x152.png"
Key string `json:"key"`
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4273,13 +4273,25 @@ spec:
properties:
key:
example: apple-touch-icon-152x152.png
maxLength: 253
minLength: 1
pattern: ^[-._a-zA-Z0-9]+$
type: string
name:
example: my-logos
maxLength: 253
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
type: string
namespace:
maxLength: 63
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
type: string
required:
- key
- name
- namespace
type: object
url:
example: https://jupyter.org/assets/favicons/apple-touch-icon-152x152.png
Expand All @@ -4298,13 +4310,25 @@ spec:
properties:
key:
example: apple-touch-icon-152x152.png
maxLength: 253
minLength: 1
pattern: ^[-._a-zA-Z0-9]+$
type: string
name:
example: my-logos
maxLength: 253
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$
type: string
namespace:
maxLength: 63
minLength: 1
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
type: string
required:
- key
- name
- namespace
type: object
url:
example: https://jupyter.org/assets/favicons/apple-touch-icon-152x152.png
Expand Down
7 changes: 5 additions & 2 deletions workspaces/controller/internal/controller/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ var (
cancel context.CancelFunc
)

const namespaceName = "default"

func TestControllers(t *testing.T) {
RegisterFailHandler(Fail)

Expand Down Expand Up @@ -192,8 +194,9 @@ func NewExampleWorkspaceKind1(name string) *kubefloworgv1beta1.WorkspaceKind {
},
Logo: kubefloworgv1beta1.WorkspaceKindIcon{
ConfigMap: &kubefloworgv1beta1.WorkspaceKindConfigMap{
Name: "my-logos",
Key: "apple-touch-icon-152x152.png",
Name: "my-logos",
Namespace: namespaceName,
Key: "apple-touch-icon-152x152.png",
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,9 @@ var _ = Describe("WorkspaceKind Controller", func() {
newWorkspaceKind.Spec.Spawner.Icon = kubefloworgv1beta1.WorkspaceKindIcon{
Url: ptr.To("https://example.com/icon.png"),
ConfigMap: &kubefloworgv1beta1.WorkspaceKindConfigMap{
Name: "my-logos",
Key: "icon.png",
Name: "my-logos",
Namespace: namespaceName,
Key: "icon.png",
},
}
Expect(k8sClient.Patch(ctx, newWorkspaceKind, patch)).NotTo(Succeed())
Expand Down
7 changes: 5 additions & 2 deletions workspaces/controller/internal/webhook/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ var (
cancel context.CancelFunc
)

const namespaceName = "default"

func TestAPIs(t *testing.T) {
RegisterFailHandler(Fail)

Expand Down Expand Up @@ -186,8 +188,9 @@ func NewExampleWorkspaceKind(name string) *kubefloworgv1beta1.WorkspaceKind {
},
Logo: kubefloworgv1beta1.WorkspaceKindIcon{
ConfigMap: &kubefloworgv1beta1.WorkspaceKindConfigMap{
Name: "my-logos",
Key: "apple-touch-icon-152x152.png",
Name: "my-logos",
Namespace: namespaceName,
Key: "apple-touch-icon-152x152.png",
},
},
},
Expand Down

0 comments on commit 7249333

Please sign in to comment.