Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BC-5405 - Metadata on k8s ressources #2899

Merged
merged 5 commits into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions ansible/roles/nuxt-client-core/templates/deployment.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ metadata:
namespace: {{ NAMESPACE }}
labels:
app: nuxtclient
app.kubernetes.io/part-of: schulcloud-verbund
app.kubernetes.io/version: {{ NUXT_CLIENT_IMAGE_TAG }}
app.kubernetes.io/name: nuxtclient
app.kubernetes.io/component: client
app.kubernetes.io/managed-by: ansible
git.branch: {{ NUXT_CLIENT_BRANCH_NAME }}
git.repo: {{ NUXT_CLIENT_REPO_NAME }}
spec:
replicas: {{ NUXTCLIENT_REPLICAS|default("1", true) }}
strategy:
Expand All @@ -20,6 +27,13 @@ spec:
metadata:
labels:
app: nuxtclient
app.kubernetes.io/part-of: schulcloud-verbund
app.kubernetes.io/version: {{ NUXT_CLIENT_IMAGE_TAG }}
app.kubernetes.io/name: nuxtclient
app.kubernetes.io/component: client
app.kubernetes.io/managed-by: ansible
git.branch: {{ NUXT_CLIENT_BRANCH_NAME }}
git.repo: {{ NUXT_CLIENT_REPO_NAME }}
annotations:
spec:
securityContext:
Expand Down
Loading