Uživatelský manuál
Stručný průvodce
Dashboard
Přehledy
Detail případu (Caseoverview)
Případ - Událost
Úkoly
Poznámky případu
Dokumenty
Nastavení uživatele
Oblíbené
Komponenta tabulky
Admin dokumentace
Administrace
Autentizace a synchronizace
Nastavení mobilní aplikace pro vaše prostředí
Schéma
Dynamické tabulky
Archivace
Skripty
Servisní konzole
Naplánované úkoly
HR Agenda
Sekvence
Záhlaví CSP
Logy
Crons
Nastavení přístupového tokenu a vypršení platnosti relace
Šablona
Role
Integrace
TAS Forms
Výpočty a funkce
Pokročilé funkce a tipy
Filtrování v dynamickém listu pomocí URL parametru (statické)
Vyhledání v dynamické tabulce podle hodnoty sloupce
Optimalizace volání api na dynamických podmínkách
Filtrování v dynamickém listu pomocí dynamických podmínek
Optimalizace přehledů s velkým počtem případů
Vytvoření dokumentu DOCX
Plánování
Uživatelé
Organizační struktura
Události
Partneři
Produkt
Business Changelog
Technický changelog
Průvodce upgradem z předchozích verzí
Upgrade na 5.9
Upgrade na 5.3
Migrace dynamických podmínek
Úprava tisku pdf
Úprava Popis úkolu vs Instrukce k úkolu
Transpilace forEach na for loop
Vykreslení HTML na Caseoverview
Upgrade na 5.7
Rozdíly mezi TAS4 a TAS5 - kompletní přehled
Best Practices upgrade z TAS 4 na TAS 5
Technické požadavky a architektura
Aktuality / Důležité informace
- Vše /
- Admin dokumentace
- TAS Forms /
- Tvoření secretu pro Docker Swarm
Tvoření secretu pro Docker Swarm
Generate Private and Public Keys
openssl req -x509 -newkey rsa:4096 -keyout private.key -out public.crt -sha256 -days 3650 -nodes
Copy the content of the private.key file, you will need it for the creation of a docker secret.
Create Private Key File on Server
-
Create a file on the server that your instance of Team Assistant runs on:
touch tas_forms_private.key
-
Open the file in a text editor of your choice (this guide assumes vim):
vim tas_forms_private.key
-
Once you have the file open in your editor:
- Paste the content of
private.key
file that you created earlier - Use vim options
:set noeol
and:set binary
before you save and quit
- Paste the content of
Create Docker Secret
Create a docker swarm secret from the file (replace stack_name
with the name of your instance):
docker secret create {stack_name}_forms_pk tas_forms_private.key
Verify the secret was created:
docker secret ls
You should see your secret in the list.
Update Instance Configuration
-
Open your
instance.yaml
file and find thesecrets:
block. -
Add this entry:
forms_pk:
name: ${STACK_NAME}_forms_pk
external: true
Note: The name:
MUST match the first argument of the actual secret name we just created.
Updated
by Ivo Růžička