apiVersion: v1 kind: ConfigMap metadata: name: official-placeholder-html labels: app.kubernetes.io/name: official-placeholder data: index.html: | 省心推 - 智能内容与获客运营
省心推 智能内容与获客运营
17788409108

MODERN GROWTH PLATFORM

智能内容运营,让获客增长更省心。

省心推将为企业提供智能内容、品牌曝光与获客运营能力。 从内容策划到发布协同,帮助团队更高效地触达客户、沉淀线索。

联系 17788409108 企业内容增长服务
default.conf: | server { listen 80; server_name _; root /usr/share/nginx/html; index index.html; location / { add_header Cache-Control "no-store, no-cache, must-revalidate" always; try_files $uri /index.html; } } --- apiVersion: v1 kind: Service metadata: name: official-placeholder labels: app.kubernetes.io/name: official-placeholder spec: selector: app.kubernetes.io/name: official-placeholder ports: - name: http port: 80 targetPort: http --- apiVersion: apps/v1 kind: Deployment metadata: name: official-placeholder labels: app.kubernetes.io/name: official-placeholder spec: replicas: 1 selector: matchLabels: app.kubernetes.io/name: official-placeholder template: metadata: labels: app.kubernetes.io/name: official-placeholder spec: containers: - name: nginx image: docker.io/geo-rankly/frontend:bb2ad3f6 imagePullPolicy: IfNotPresent ports: - name: http containerPort: 80 readinessProbe: httpGet: path: / port: http initialDelaySeconds: 3 periodSeconds: 10 livenessProbe: httpGet: path: / port: http initialDelaySeconds: 15 periodSeconds: 20 resources: requests: cpu: 10m memory: 16Mi limits: cpu: 100m memory: 64Mi volumeMounts: - name: html mountPath: /usr/share/nginx/html/index.html subPath: index.html readOnly: true - name: html mountPath: /etc/nginx/http.d/default.conf subPath: default.conf readOnly: true volumes: - name: html configMap: name: official-placeholder-html --- apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: official-placeholder annotations: cert-manager.io/cluster-issuer: letsencrypt-prod traefik.ingress.kubernetes.io/router.entrypoints: websecure spec: ingressClassName: traefik rules: - host: shengxintui.com http: paths: - path: / pathType: Prefix backend: service: name: official-placeholder port: number: 80 - host: www.shengxintui.com http: paths: - path: / pathType: Prefix backend: service: name: official-placeholder port: number: 80 tls: - hosts: - shengxintui.com - www.shengxintui.com secretName: official-placeholder-tls --- apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: official-placeholder-http annotations: traefik.ingress.kubernetes.io/router.entrypoints: web spec: ingressClassName: traefik rules: - host: shengxintui.com http: paths: - path: / pathType: Prefix backend: service: name: official-placeholder port: number: 80 - host: www.shengxintui.com http: paths: - path: / pathType: Prefix backend: service: name: official-placeholder port: number: 80