diff --git a/k8s/configmap.yaml b/k8s/configmap.yaml new file mode 100644 index 0000000..9ffa1b5 --- /dev/null +++ b/k8s/configmap.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: hello-cicd-config + namespace: student-sz11zs +data: + APP_VERSION: "2.0-stabilna" + ENVIRONMENT: "produkcija" + MESSAGE: "Aplikacija uspjeĆĄno koristi ConfigMap!" \ No newline at end of file diff --git a/k8s/secret.yaml b/k8s/secret.yaml new file mode 100644 index 0000000..1330319 --- /dev/null +++ b/k8s/secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: hello-cicd-secret + namespace: student-sz11zs +type: Opaque +data: + password:bG96aW5rYTEyMw== \ No newline at end of file