diff --git a/classes/Pod.ts b/classes/Pod.ts
index 40d9334..8fa249e 100644
--- a/classes/Pod.ts
+++ b/classes/Pod.ts
@@ -26,9 +26,12 @@ class Status
phase?: PodStatus
}
-class Container
+export class Container
{
-
+ constructor (
+ public name: string,
+ public image: string
+ ) {}
}
enum PodStatus
diff --git a/components/ConfigMapComponent.vue b/components/configmap/ConfigMapComponent.vue
similarity index 66%
rename from components/ConfigMapComponent.vue
rename to components/configmap/ConfigMapComponent.vue
index db0ee63..e8e7ac3 100644
--- a/components/ConfigMapComponent.vue
+++ b/components/configmap/ConfigMapComponent.vue
@@ -1,18 +1,22 @@
-
{{ configMap.metadata.name }}
+
show = true">{{ configMap.metadata.name }}
{{ configMap.metadata.namespace }}
{{ calcAge(configMap.metadata.creationTimestamp) }}
{{ Object.keys(configMap.data).length }}-
+
\ No newline at end of file
diff --git a/components/deployments/DeploymentComponent.vue b/components/deployment/DeploymentComponent.vue
similarity index 100%
rename from components/deployments/DeploymentComponent.vue
rename to components/deployment/DeploymentComponent.vue
diff --git a/components/deployment/view/DeploymentViewPopup.vue b/components/deployment/view/DeploymentViewPopup.vue
new file mode 100644
index 0000000..e1978d1
--- /dev/null
+++ b/components/deployment/view/DeploymentViewPopup.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/components/inspect/resources/ConfigMapList.vue b/components/inspect/resources/ConfigMapList.vue
index 14d2a9c..7cabb8d 100644
--- a/components/inspect/resources/ConfigMapList.vue
+++ b/components/inspect/resources/ConfigMapList.vue
@@ -16,6 +16,7 @@
+
+
diff --git a/components/pod/view/PodViewPopup.vue b/components/pod/view/PodViewPopup.vue
index 8702ce6..65d51ef 100644
--- a/components/pod/view/PodViewPopup.vue
+++ b/components/pod/view/PodViewPopup.vue
@@ -38,21 +38,13 @@
+
Containers
+
{{ container.name }}: {{ container.image }}
+
-