feat: Add complete Redis cache example with multi-container pod and web interface

This commit is contained in:
mik-tf
2025-11-04 13:51:39 -05:00
parent 1a902b3178
commit 5a29153a84
6 changed files with 1090 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: redis-cache-service
spec:
selector:
app: redis-cache
ports:
- name: redis
port: 6379
targetPort: 6379
- name: web
port: 8080
targetPort: 8080
type: LoadBalancer