Files
admin-platform-v3/values.yaml
Claude b5a3a3029b tower-ui 0.61.24 — bell dismiss + completion toasts
#2 Dismiss / Clear failed:
  - Per-row [×] (text 'Dismiss', shown on hover) on terminal ops
  - 'Clear' button in dropdown header when any dismissable rows exist
  - Dismissed IDs persisted to localStorage (tower_dismissed_ops)
  - Pruned during the 30s sweep when the underlying op falls out
    of the recent window — keeps storage from growing forever
  - badgeCount + failedCount filter dismissed entries so the red
    pill clears the moment the operator acks the failure

#4 Toast popups:
  - useToast composable + Toaster.vue mounted at App.vue
  - Triggered from NotificationBell.upsert on terminal transition
    when the op was running ≥30s AND the bell isn't open
  - Success: 5s auto-dismiss; Failure: sticky until clicked away
  - Click-through links to the per-instance Activity timeline
    (#op_<id>) for any op carrying instanceCode
  - Stack of 3, oldest drops on overflow
  - No external dep — hand-rolled to match v3's component style
2026-04-30 18:25:45 +03:00

72 lines
2.0 KiB
YAML

# admin-platform-v3 — Tower platform default values.
backend:
enabled: true
image:
# Tower images live alongside the Docker Hub mirror on
# gitlab.odoosky.cloud — separate path, same registry. Pulled with
# the docker-mirror-pull deploy token (read-only registry scope),
# so every cluster that runs Tower needs the same imagePullSecret
# provisioned out-of-band (until cluster-platform-v3 owns it).
repository: registry.odoosky.cloud/odoosky/docker-mirror/tower
tag: "0.61.23"
pullPolicy: IfNotPresent
imagePullSecrets:
- name: docker-mirror-pull
replicas: 1
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: "1"
memory: 256Mi
persistence:
enabled: true
size: 1Gi
frontend:
enabled: true
image:
repository: registry.odoosky.cloud/odoosky/docker-mirror/tower-ui
tag: "0.61.24"
pullPolicy: IfNotPresent
imagePullSecrets:
- name: docker-mirror-pull
replicas: 1
resources:
requests:
cpu: 10m
memory: 16Mi
limits:
cpu: 250m
memory: 64Mi
# Tower needs to talk to:
# - Gitea (create tenant repos, commit values.yaml)
# - ArgoCD (apply Application manifests)
#
# The credentials live in a K8s Secret in the same namespace, populated
# from the ExistingSecret pattern (so they aren't checked into Git).
# In Step 5+ we replace this with External Secrets sourcing from
# OpenBao at vault.odoosky.org.
config:
giteaURL: https://git.odoosky.org
giteaOrg: odoo-tower
chartRepo: instance-template-v3
argoCDURL: https://argocd.odoosky.org
argoCDUsername: admin
argoCDDestination: https://kubernetes.default.svc
argoCDProject: default
argoCDNamespace: argocd
tenantNamespace: tenants
# The Secret name (in the same namespace as Tower) that holds
# GITEA_TOKEN and ARGOCD_PASSWORD keys. Created out-of-band before
# this chart is applied.
existingSecret: tower-credentials
ingress:
domain: tower.odoosky.org
certIssuer: letsencrypt-prod
entryPoint: websecure