mirror of
https://github.com/beclab/Olares
synced 2026-05-24 01:08:23 +00:00
app-service, tapr: implement shared entrances (#2098)
* app-service, tapr: implement shared entrances * Update app-service image version to 0.4.46
This commit is contained in:
parent
f5b8d226c9
commit
3f6bc2bf36
3 changed files with 42 additions and 2 deletions
|
|
@ -159,6 +159,46 @@ spec:
|
|||
type: string
|
||||
description: the extend settings of the application
|
||||
type: object
|
||||
sharedEntrances:
|
||||
description: SharedEntrances contains entrances shared with other
|
||||
applications
|
||||
items:
|
||||
description: Entrance contains details for application entrance
|
||||
properties:
|
||||
authLevel:
|
||||
type: string
|
||||
host:
|
||||
type: string
|
||||
icon:
|
||||
description: Optional. if invisible=true.
|
||||
type: string
|
||||
invisible:
|
||||
type: boolean
|
||||
name:
|
||||
type: string
|
||||
openMethod:
|
||||
description: |-
|
||||
openMethod has three choices default, iframe, window
|
||||
Optional. if invisible=true.
|
||||
type: string
|
||||
port:
|
||||
format: int32
|
||||
type: integer
|
||||
skip:
|
||||
type: boolean
|
||||
title:
|
||||
description: Optional. if invisible=true.
|
||||
type: string
|
||||
url:
|
||||
type: string
|
||||
windowPushState:
|
||||
type: boolean
|
||||
required:
|
||||
- host
|
||||
- name
|
||||
- port
|
||||
type: object
|
||||
type: array
|
||||
tailscale:
|
||||
properties:
|
||||
acls:
|
||||
|
|
|
|||
|
|
@ -170,7 +170,7 @@ spec:
|
|||
priorityClassName: "system-cluster-critical"
|
||||
containers:
|
||||
- name: app-service
|
||||
image: beclab/app-service:0.4.44
|
||||
image: beclab/app-service:0.4.46
|
||||
imagePullPolicy: IfNotPresent
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ spec:
|
|||
runAsUser: 0
|
||||
containers:
|
||||
- name: tapr-sysevent
|
||||
image: beclab/sys-event:0.2.13
|
||||
image: beclab/sys-event:0.2.14
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
||||
---
|
||||
|
|
|
|||
Loading…
Reference in a new issue