Skip to content

Commit 53db91b

Browse files
authored
Fix registry viewer host alias resolution (#51)
* Fix registry viewer host alias resolution Signed-off-by: Kim Tsao <[email protected]> * Add a fake kubeconfig to fix CI tests Signed-off-by: Kim Tsao <[email protected]> * fix path Signed-off-by: Kim Tsao <[email protected]> * Undo controller test changes Signed-off-by: Kim Tsao <[email protected]> * update integration tests Signed-off-by: Kim Tsao <[email protected]> * Address review comments Signed-off-by: Kim Tsao <[email protected]> --------- Signed-off-by: Kim Tsao <[email protected]>
1 parent 49aad35 commit 53db91b

File tree

11 files changed

+226
-102
lines changed

11 files changed

+226
-102
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
-
6868
name: Check CRD manifest generation
6969
run: make manifests
70-
-
70+
-
7171
name: Run unit tests
7272
run: make test
7373
-

controllers/devfileregistry_controller.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,6 @@ func (r *DevfileRegistryReconciler) Reconcile(ctx context.Context, req ctrl.Requ
183183
log.Error(err, "Failed to update DevfileRegistry status")
184184
return ctrl.Result{Requeue: true}, err
185185
}
186-
187-
//update the config map
188-
result, err = r.ensure(ctx, devfileRegistry, &corev1.ConfigMap{}, labels, "")
189-
if result != nil {
190-
return *result, err
191-
}
192-
193186
}
194187

195188
// Update condition status
@@ -224,8 +217,7 @@ func (r *DevfileRegistryReconciler) SetupWithManager(mgr ctrl.Manager) error {
224217
Owns(&appsv1.Deployment{}).
225218
Owns(&corev1.Service{}).
226219
Owns(&corev1.PersistentVolumeClaim{}).
227-
Owns(&networkingv1.Ingress{}).
228-
Owns(&corev1.ConfigMap{})
220+
Owns(&networkingv1.Ingress{})
229221

230222
// If on OpenShift, mark routes as owned by the controller
231223
if config.ControllerCfg.IsOpenShift() {

controllers/ensure.go

-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ func (r *DevfileRegistryReconciler) ensure(ctx context.Context, cr *registryv1al
6666
case *networkingv1.Ingress:
6767
ingress, _ := resource.(*networkingv1.Ingress)
6868
err = r.updateIngress(ctx, cr, ingressDomain, ingress)
69-
case *corev1.ConfigMap:
70-
configMap, _ := resource.(*corev1.ConfigMap)
71-
err = r.updateConfigMap(ctx, cr, configMap)
7269
}
7370
if err != nil {
7471
r.Log.Error(err, "Failed to update "+resourceType)

controllers/suite_test.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package controllers
1818

1919
import (
20+
"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme"
2021
"path/filepath"
2122
"testing"
2223

@@ -29,7 +30,6 @@ import (
2930

3031
. "github.com/onsi/ginkgo/v2"
3132
. "github.com/onsi/gomega"
32-
"k8s.io/client-go/kubernetes/scheme"
3333
"k8s.io/client-go/rest"
3434
"sigs.k8s.io/controller-runtime/pkg/client"
3535
"sigs.k8s.io/controller-runtime/pkg/envtest"
@@ -126,7 +126,7 @@ func getClusterDevfileRegistriesListCR(name string, namespace string, registryNa
126126
return &ClusterDevfileRegistriesList{
127127
TypeMeta: metav1.TypeMeta{
128128
APIVersion: ApiVersion,
129-
Kind: "ClusterDevfileRegistriesList",
129+
Kind: string(ClusterListType),
130130
},
131131
ObjectMeta: metav1.ObjectMeta{
132132
Name: name,
@@ -149,7 +149,7 @@ func getDevfileRegistriesListCR(name string, namespace string, registryName stri
149149
return &DevfileRegistriesList{
150150
TypeMeta: metav1.TypeMeta{
151151
APIVersion: ApiVersion,
152-
Kind: "DevfileRegistriesList",
152+
Kind: string(NamespaceListType),
153153
},
154154
ObjectMeta: metav1.ObjectMeta{
155155
Name: name,
@@ -172,6 +172,7 @@ func deleteCRList(drlLookupKey types.NamespacedName, f ListType) {
172172

173173
cl := &ClusterDevfileRegistriesList{}
174174
nl := &DevfileRegistriesList{}
175+
175176
// Delete
176177
Eventually(func() error {
177178
if f == ClusterListType {

controllers/update.go

+17-13
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,23 @@ func (r *DevfileRegistryReconciler) updateDeployment(ctx context.Context, cr *re
8888
if len(dep.Spec.Template.Spec.Containers) > 2 {
8989
viewerImage := registry.GetRegistryViewerImage(cr)
9090
viewerImageContainer := dep.Spec.Template.Spec.Containers[2]
91+
92+
//determine if the NEXT_PUBLIC_ANALYTICS_WRITE_KEY env needs updating
93+
viewerKey := cr.Spec.Telemetry.RegistryViewerWriteKey
94+
if viewerImageContainer.Env[0].Value != viewerKey {
95+
r.Log.Info("Updating NEXT_PUBLIC_ANALYTICS_WRITE_KEY ", "value", viewerKey)
96+
viewerImageContainer.Env[0].Value = viewerKey
97+
needsUpdating = true
98+
}
99+
100+
//determine if the DEVFILE_REGISTRIES env needs updating. This will only occur on initial deployment since object name is unique
101+
newDRValue := fmt.Sprintf(`[{"name": "%s","url": "http://localhost:8080","fqdn": "%s"}]`, cr.ObjectMeta.Name, cr.Status.URL)
102+
if viewerImageContainer.Env[1].Value != newDRValue {
103+
r.Log.Info("Updating DEVFILE_REGISTRIES ", "value", newDRValue)
104+
viewerImageContainer.Env[1].Value = newDRValue
105+
needsUpdating = true
106+
}
107+
91108
if viewerImageContainer.Image != viewerImage {
92109
viewerImageContainer.Image = viewerImage
93110
needsUpdating = true
@@ -202,16 +219,3 @@ func (r *DevfileRegistryReconciler) deleteOldPVCIfNeeded(ctx context.Context, cr
202219
}
203220
return nil
204221
}
205-
206-
func (r *DevfileRegistryReconciler) updateConfigMap(ctx context.Context, cr *registryv1alpha1.DevfileRegistry, configMap *corev1.ConfigMap) error {
207-
208-
viewerEnvfile := fmt.Sprintf(`
209-
NEXT_PUBLIC_ANALYTICS_WRITE_KEY=%s
210-
DEVFILE_REGISTRIES=[{"name":"%s","url":"http://localhost:8080","fqdn":"%s"}]`,
211-
cr.Spec.Telemetry.RegistryViewerWriteKey, cr.ObjectMeta.Name, cr.Status.URL)
212-
213-
configMap.Data[".env.registry-viewer"] = viewerEnvfile
214-
215-
return r.Update(ctx, configMap)
216-
217-
}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ require (
1313
github.com/stretchr/testify v1.8.1
1414
gopkg.in/yaml.v2 v2.4.0
1515
k8s.io/api v0.26.2
16+
k8s.io/apiextensions-apiserver v0.26.1
1617
k8s.io/apimachinery v0.26.2
1718
k8s.io/client-go v0.26.2
1819
sigs.k8s.io/controller-runtime v0.14.5
@@ -87,7 +88,6 @@ require (
8788
google.golang.org/protobuf v1.28.1 // indirect
8889
gopkg.in/inf.v0 v0.9.1 // indirect
8990
gopkg.in/yaml.v3 v3.0.1 // indirect
90-
k8s.io/apiextensions-apiserver v0.26.1 // indirect
9191
k8s.io/component-base v0.26.1 // indirect
9292
k8s.io/klog/v2 v2.80.1 // indirect
9393
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect

pkg/registry/deployment.go

-24
Original file line numberDiff line numberDiff line change
@@ -280,30 +280,6 @@ func GenerateDeployment(cr *registryv1alpha1.DevfileRegistry, scheme *runtime.Sc
280280
]`, cr.ObjectMeta.Name, cr.Status.URL),
281281
},
282282
},
283-
VolumeMounts: []corev1.VolumeMount{
284-
{
285-
Name: "viewer-env-file",
286-
MountPath: "/app/.env.production",
287-
SubPath: ".env.production",
288-
ReadOnly: true,
289-
},
290-
},
291-
})
292-
dep.Spec.Template.Spec.Volumes = append(dep.Spec.Template.Spec.Volumes, corev1.Volume{
293-
Name: "viewer-env-file",
294-
VolumeSource: corev1.VolumeSource{
295-
ConfigMap: &corev1.ConfigMapVolumeSource{
296-
LocalObjectReference: corev1.LocalObjectReference{
297-
Name: ConfigMapName(cr.Name),
298-
},
299-
Items: []corev1.KeyToPath{
300-
{
301-
Key: ".env.registry-viewer",
302-
Path: ".env.production",
303-
},
304-
},
305-
},
306-
},
307283
})
308284
} else {
309285
// Set environment variable to run index server in headless mode

pkg/test/test_utils.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ import (
3131
type ListType string
3232

3333
const (
34-
ClusterListType ListType = "ClusterDevfileRegistriesList"
35-
NamespaceListType ListType = "DevfileRegistriesList"
36-
ApiVersion = "registry.devfile.io/v1alpha1"
37-
Timeout = time.Second * 10
38-
Interval = time.Millisecond * 250
34+
ClusterListType ListType = "ClusterDevfileRegistriesList"
35+
NamespaceListType ListType = "DevfileRegistriesList"
36+
DevfileRegistryType ListType = "DevfileRegistry"
37+
ApiVersion = "registry.devfile.io/v1alpha1"
38+
Timeout = time.Second * 10
39+
Interval = time.Millisecond * 250
3940
)
4041

4142
// GetNewUnstartedTestServer is a mock test index server that supports just the v2 index schema

tests/integration/examples/update/devfileregistry-new.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ spec:
88
storage:
99
enabled: false
1010
tls:
11-
enabled: true
11+
enabled: true
12+
telemetry:
13+
key: registry-key
14+
registryViewerWriteKey: viewer-key

tests/integration/pkg/client/pod.go

+69
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,31 @@ func (w *K8sClient) WaitForPodRunningByLabelWithNamespace(label string, namespac
4848
}
4949
}
5050

51+
// WaitForPodFailedByLabelWithNamespace waits for the pod matching the specified label in a specified namespace to become running
52+
// An error is returned if the pod does not exist or the timeout is reached
53+
func (w *K8sClient) WaitForPodFailedByLabelWithNamespace(label string, namespace string) (deployed bool, err error) {
54+
timeout := time.After(6 * time.Minute)
55+
tick := time.Tick(1 * time.Second)
56+
57+
for {
58+
select {
59+
case <-timeout:
60+
return false, errors.New("timed out")
61+
case <-tick:
62+
err := w.WaitForFailedPodBySelector(namespace, label, 3*time.Minute)
63+
if err == nil {
64+
return true, nil
65+
}
66+
}
67+
}
68+
}
69+
70+
// WaitForPodFailedByLabel waits for the pod matching the specified label to become running
71+
// An error is returned if the pod does not exist or the timeout is reached
72+
func (w *K8sClient) WaitForPodFailedByLabel(label string) (deployed bool, err error) {
73+
return w.WaitForPodFailedByLabelWithNamespace(label, config.Namespace)
74+
}
75+
5176
// WaitForPodRunningByLabel waits for the pod matching the specified label to become running
5277
// An error is returned if the pod does not exist or the timeout is reached
5378
func (w *K8sClient) WaitForPodRunningByLabel(label string) (deployed bool, err error) {
@@ -77,6 +102,29 @@ func (w *K8sClient) WaitForRunningPodBySelector(namespace, selector string, time
77102
return nil
78103
}
79104

105+
// WaitForFailedPodBySelector waits up to timeout seconds for all pods in 'namespace' with given 'selector' to enter running state.
106+
// Returns an error if no pods are found or not all discovered pods enter running state.
107+
func (w *K8sClient) WaitForFailedPodBySelector(namespace, selector string, timeout time.Duration) error {
108+
podList, err := w.ListPods(namespace, selector)
109+
if err != nil {
110+
return err
111+
}
112+
if len(podList.Items) == 0 {
113+
fmt.Println("No pods for " + selector + " in namespace " + namespace)
114+
115+
return nil
116+
}
117+
118+
for _, pod := range podList.Items {
119+
fmt.Println("Pod " + pod.Name + " created in namespace " + namespace + "...Checking for failure.")
120+
if err := w.waitForPodFailing(namespace, pod.Name, timeout); err != nil {
121+
return err
122+
}
123+
}
124+
125+
return nil
126+
}
127+
80128
// ListPods returns the list of currently scheduled or running pods in `namespace` with the given selector
81129
func (w *K8sClient) ListPods(namespace, selector string) (*v1.PodList, error) {
82130
listOptions := metav1.ListOptions{LabelSelector: selector}
@@ -94,6 +142,12 @@ func (w *K8sClient) waitForPodRunning(namespace, podName string, timeout time.Du
94142
return wait.PollImmediate(time.Second, timeout, w.isPodRunning(podName, namespace))
95143
}
96144

145+
// Poll up to timeout seconds for pod to enter running state.
146+
// Returns an error if the pod never enters the running state.
147+
func (w *K8sClient) waitForPodFailing(namespace, podName string, timeout time.Duration) error {
148+
return wait.PollImmediate(time.Second, timeout, w.isPodFailing(podName, namespace))
149+
}
150+
97151
// return a condition function that indicates whether the given pod is
98152
// currently running
99153
func (w *K8sClient) isPodRunning(podName, namespace string) wait.ConditionFunc {
@@ -111,3 +165,18 @@ func (w *K8sClient) isPodRunning(podName, namespace string) wait.ConditionFunc {
111165
return false, nil
112166
}
113167
}
168+
169+
// return a condition function that indicates whether the given pod is
170+
// currently running
171+
func (w *K8sClient) isPodFailing(podName, namespace string) wait.ConditionFunc {
172+
return func() (bool, error) {
173+
pod, _ := w.Kube().CoreV1().Pods(namespace).Get(context.TODO(), podName, metav1.GetOptions{})
174+
175+
if pod.Status.Phase == v1.PodRunning {
176+
return false, nil
177+
} else {
178+
fmt.Printf("Pod terminated %s\n", podName)
179+
return true, nil
180+
}
181+
}
182+
}

0 commit comments

Comments
 (0)