Projet

Général

Profil

0001-update-local-inventory.yml.example-68272.patch

Emmanuel Cazenave, 19 août 2022 12:46

Télécharger (3,24 ko)

Voir les différences:

Subject: [PATCH] update local-inventory.yml.example (#68272)

 local-inventory.yml.example | 57 ++++++++++++++++++++++++++++++-------
 1 file changed, 47 insertions(+), 10 deletions(-)
local-inventory.yml.example
1 1
local:
2 2
  hosts:
3 3
    localhost:
4
      # Don't thouch this one.
4 5
      ansible_connection: local
5
      git_ssh: true
6
      compile_theme: false
7
      # src_dir: "/home/{{user}}/src/entrouvert"
6

  
7
      # If true, install the python virtual environnemnt from scratch
8
      # (instead of upgrading the one that could already exists from a previous installation).
9
      clean_venv: false
10

  
11
      # Perform scss compilation of the grafic themes.
12
      compile_theme: true
13

  
14
      # If true, during tenants deletion, delete every tenants that can be found.
15
      # If false, delete only the ones that are declared in the tenants_conf section.
16
      delete_all_tenants: true
17

  
18
      # If true the ssh protocol is used to clone the git repositories.
19
      # If false, https is used.
20
      git_ssh: false
21

  
22
      # The directory where the publik modules are cloned.
23
      src_dir: "/home/{{user}}/src"
24

  
25
      # This section controls the version of the publik modules source code.
26
      # By default the main branch is checked out, alternatively you can specify
27
      # other branch names or tags.
28
      #
29
      # auquotidien_version: "v5.23"
8 30
      # authentic_version: "v3.91"
9
      # django_mellon_version: "v1.34"
10
      # django_tenant_schemas_version: "v1.9.0.2"
11
      # gadjo_version: "v1.46"
12 31
      # bijoe_version: "v1.36"
13
      # wcs_olap_version: "v1.58"
14 32
      # chrono_version: "v2.37"
15 33
      # combo_version: "v4.35"
34
      # django_tenant_schemas_version: "v1.9.0.2"
35
      # django_mellon_version: "v1.34"
16 36
      # eopayment_version: "v1.76"
37
      # gadjo_version: "v1.46"
17 38
      # hobo_version: "v2.33"
18
      # passerelle_version: "v6.27"
19
      # wcs_version: "v7.70"
20
      # auquotidien_version: "v5.23"
21 39
      # lingo_version: "v0.4"
40
      # passerelle_version: "v6.27"
22 41
      # publik_base_theme_version: "v8.22"
42
      # wcs_olap_version: "v1.58"
43
      # wcs_version: "v7.70"
44

  
45
      # This section control the name of the tenants that are deployed.
46
      # The defauls one are the one below without the 'customname-' part.
47
      #
48
      # tenants_conf:
49
      #   agent-combo: "customname-agent-combo.dev.publik.love"
50
      #   connexion-authentic: "customname-authentic.dev.publik.love"
51
      #   demarches-wcs: "customname-wcs.dev.publik.love"
52
      #   dev-bijoe: "customname-bijoe.dev.publik.love"
53
      #   dev-chrono: "customname-chrono.dev.publik.love"
54
      #   dev-fargo: "customname-fargo.dev.publik.love"
55
      #   dev-hobo: "customname-hobo.dev.publik.love"
56
      #   dev-lingo: "customname-lingo.dev.publik.love"
57
      #   dev-passerelle: "customname-passerelle.dev.publik.love"
58
      #   dev-welco: "customname-welco.dev.publik.love"
59
      #   user-combo: "customname-combo.dev.publik.love"
23
-