Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "apiVersion": "apps/v1",
- "kind": "Deployment",
- "metadata": {
- "name": "sample-app"
- },
- "spec": {
- "replicas": 1,
- "selector": {
- "matchLabels": {
- "app": "sample-app"
- }
- },
- "template": {
- "metadata": {
- "labels": {
- "app": "sample-app"
- }
- },
- "spec": {
- "imagePullSecrets": [
- {"name": "registrysecret"}
- ],
- "containers": [
- {
- "image": "ghcr.io/syncro/sample-app:latest",
- "imagePullPolicy": "Always",
- "name": "sample-app",
- "env": [
- {
- "name": "DB_NAME",
- "valueFrom": {
- "configMapKeyRef": {
- "name": "sample-db-config",
- "key": "db_name"
- }
- }
- },
- {
- "name": "DB_USER",
- "valueFrom": {
- "configMapKeyRef": {
- "name": "sample-db-config",
- "key": "db_user"
- }
- }
- },
- {
- "name": "DB_PASSWORD",
- "valueFrom": {
- "configMapKeyRef": {
- "name": "sample-db-config",
- "key": "db_password"
- }
- }
- },
- {
- "name": "DB_HOST",
- "value": "sample-db-service"
- },
- {
- "name": "DB_PORT",
- "valueFrom": {
- "configMapKeyRef": {
- "name": "sample-db-config",
- "key": "db_port"
- }
- }
- },
- {
- "name": "SPRING_PROFILES_ACTIVE",
- "value": "k8s"
- }
- ],
- "lifecycle": {
- "preStop": {
- "exec": {
- "command": ["sh", "-c", "sleep 10"]
- }
- }
- },
- "ports": [
- {
- "containerPort": 8080
- },
- {
- "containerPort": 5701
- }
- ]
- }
- ]
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment