this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(wolumonde): make perses provision use yaml

dusk 0185858b cc855dab

+29 -59
-22
hosts/wolumonde/modules/perses/provision/10-victoria.json
··· 1 - [ 2 - { 3 - "kind": "GlobalDatasource", 4 - "metadata": { 5 - "name": "victoria" 6 - }, 7 - "spec": { 8 - "default": false, 9 - "plugin": { 10 - "kind": "PrometheusDatasource", 11 - "spec": { 12 - "proxy": { 13 - "kind": "HTTPProxy", 14 - "spec": { 15 - "url": "http://localhost:8428" 16 - } 17 - } 18 - } 19 - } 20 - } 21 - } 22 - ]
+12
hosts/wolumonde/modules/perses/provision/10-victoria.yaml
··· 1 + - kind: GlobalDatasource 2 + metadata: 3 + name: victoria 4 + spec: 5 + default: true 6 + plugin: 7 + kind: PrometheusDatasource 8 + spec: 9 + proxy: 10 + kind: HTTPProxy 11 + spec: 12 + url: http://localhost:8428
-20
hosts/wolumonde/modules/perses/provision/2-admin-role.json
··· 1 - [ 2 - { 3 - "kind": "GlobalRole", 4 - "metadata": { 5 - "name": "admin" 6 - }, 7 - "spec": { 8 - "permissions": [ 9 - { 10 - "actions": [ 11 - "*" 12 - ], 13 - "scopes": [ 14 - "*" 15 - ] 16 - } 17 - ] 18 - } 19 - } 20 - ]
+9
hosts/wolumonde/modules/perses/provision/2-admin-role.yaml
··· 1 + - kind: GlobalRole 2 + metadata: 3 + name: admin 4 + spec: 5 + permissions: 6 + - actions: 7 + - '*' 8 + scopes: 9 + - '*'
-17
hosts/wolumonde/modules/perses/provision/3-admin-bind-role.json
··· 1 - [ 2 - { 3 - "kind": "GlobalRoleBinding", 4 - "metadata": { 5 - "name": "admin" 6 - }, 7 - "spec": { 8 - "role": "admin", 9 - "subjects": [ 10 - { 11 - "kind": "User", 12 - "name": "admin" 13 - } 14 - ] 15 - } 16 - } 17 - ]
+8
hosts/wolumonde/modules/perses/provision/3-admin-bind-role.yaml
··· 1 + - kind: GlobalRoleBinding 2 + metadata: 3 + name: admin 4 + spec: 5 + role: admin 6 + subjects: 7 + - kind: User 8 + name: admin