forked from armadaproject/armada-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimal-setup.yaml
57 lines (57 loc) · 1.44 KB
/
minimal-setup.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
apiVersion: install.armadaproject.io/v1alpha1
kind: ArmadaServer
metadata:
name: armada-server
namespace: armada
spec:
pulsarInit: false
ingress:
ingressClass: "nginx"
clusterIssuer: "letsencrypt-dev"
hostNames: []
replicas: 1
image:
repository: gresearch/armada-server
tag: 0.3.92
applicationConfig:
auth:
anonymousAuth: true
permissionGroupMapping:
submit_jobs: ["everyone"]
submit_any_jobs: ["everyone"]
create_queue: ["everyone"]
delete_queue: ["everyone"]
cancel_jobs: ["everyone"]
cancel_any_jobs: ["everyone"]
reprioritize_jobs: ["everyone"]
reprioritize_any_jobs: ["everyone"]
watch_events: ["everyone"]
watch_all_events: ["everyone"]
execute_jobs: ["everyone"]
postgres:
connection:
host: postgres-postgresql.data.svc.cluster.local
port: 5432
user: postgres
password: psw
dbname: postgres
sslmode: disable
pulsar:
URL: pulsar://pulsar-broker.data.svc.cluster.local:6650
redis:
addrs:
- redis-redis-ha.data.svc.cluster.local:6379
---
apiVersion: install.armadaproject.io/v1alpha1
kind: Executor
metadata:
name: armada-executor
namespace: armada
spec:
image:
repository: gresearch/armada-executor
tag: 0.3.92
applicationConfig:
apiConnection:
armadaUrl: armada-server.armada.svc.cluster.local:50051
forceNoTls: true