# FlowerCore Tenant — retired flowercore.io placeholder.
#
# Public flowercore.io/www.flowercore.io routing is now owned by
# apps/fc-landing/fc-landing.yaml. This tenant placeholder remains available
# only as an in-cluster service; do not create a duplicate public
# IngressRoute here because it competes with fc-landing and requires a
# namespace-local cf-origin-flowercore-io Secret.
# ArgoCD managed - BlueJay Lab
---
apiVersion: v1
kind: Namespace
metadata:
name: tenant-flowercore
labels:
app.kubernetes.io/part-of: bluejay-infra
flowercore.io/tenant: flowercore
---
# Landing page HTML
apiVersion: v1
kind: ConfigMap
metadata:
name: flowercore-web-html
namespace: tenant-flowercore
data:
index.html: |
FlowerCore — flowercore.io
Platform
🌻
FlowerCore
flowercore.io
Multi-tenant service management platform.
Digital signage, telephony, MySQL hosting, and more.
Digital Signage
Screens, zones, scheduling
Telephony
IVR workflows, Twilio
MySQL Manager
Database provisioning
PHP Manager
Site deployment
---
# nginx configuration
apiVersion: v1
kind: ConfigMap
metadata:
name: flowercore-web-nginx-conf
namespace: tenant-flowercore
data:
default.conf: |
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location /healthz {
access_log off;
return 200 "ok";
add_header Content-Type text/plain;
}
}
---
# Deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: flowercore-web
namespace: tenant-flowercore
labels:
app: flowercore-web
spec:
replicas: 1
selector:
matchLabels:
app: flowercore-web
template:
metadata:
labels:
app: flowercore-web
spec:
containers:
- name: nginx
image: nginx:alpine
ports:
- containerPort: 80
name: http
volumeMounts:
- name: nginx-conf
mountPath: /etc/nginx/conf.d/default.conf
subPath: default.conf
- name: html
mountPath: /usr/share/nginx/html
resources:
requests:
memory: 32Mi
cpu: 10m
limits:
memory: 64Mi
cpu: 50m
livenessProbe:
httpGet:
path: /healthz
port: 80
initialDelaySeconds: 5
periodSeconds: 10
readinessProbe:
httpGet:
path: /healthz
port: 80
initialDelaySeconds: 3
periodSeconds: 5
volumes:
- name: nginx-conf
configMap:
name: flowercore-web-nginx-conf
- name: html
configMap:
name: flowercore-web-html
---
# Service
apiVersion: v1
kind: Service
metadata:
name: flowercore-web
namespace: tenant-flowercore
spec:
selector:
app: flowercore-web
ports:
- port: 80
targetPort: 80
name: http