27 lines
671 B
YAML
27 lines
671 B
YAML
apiVersion: core.oam.dev/v1beta1
|
|
kind: Application
|
|
metadata:
|
|
name: static-site
|
|
namespace: default
|
|
annotations:
|
|
# Автоматическое обновление при изменении
|
|
argocd.argoproj.io/sync-wave: "0"
|
|
spec:
|
|
components:
|
|
- name: frontend
|
|
type: webservice
|
|
properties:
|
|
image: harbor.apps.kopikopi.com.ru/drone/test:latest
|
|
ports:
|
|
- port: 80
|
|
expose: true
|
|
traits:
|
|
- type: ingress
|
|
properties:
|
|
domain: static.apps.kopikopi.com.ru
|
|
http:
|
|
"/": 80
|
|
tls:
|
|
enabled: true
|
|
secretName: static-tls
|