Skip to content

Commit

Permalink
[Demo]Add yunikorn demo (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
lshmouse authored Nov 11, 2024
1 parent b85a994 commit 2fee993
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
1 change: 1 addition & 0 deletions experimental/yunikorn/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yunikorn*
22 changes: 22 additions & 0 deletions experimental/yunikorn/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## Yunikorn
See: https://yunikorn.ingress.k8s.com/

### Install
```
helm pull --untar yunikorn --repo https://apache.github.io/yunikorn-release --version=1.3.0
helm upgrade -i --create-namespace yunikorn yunikorn -f values.yaml -n yunikorn
```

### Upgrade
check diff
```
helm diff -n yunikorn yunikorn yunikorn -f values.yaml
```

### Uninstall
```
helm uninstall -n yunikorn yunikorn
```

### References
- https://yunikorn.apache.org/docs/
23 changes: 23 additions & 0 deletions experimental/yunikorn/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
admissionController:
replicaCount: 1

ingress:
enabled: true
hosts:
- host: yunikorn.ingress.k8s.com
paths: ["/"]

yunikornDefaults:
service.clusterId: "yunikorn-east"
service.policyGroup: queues
service.placeholderImage: registry.k8s.io/pause:3.7
queues.yaml: |
partitions:
- name: default
placementrules:
- name: tag
value: namespace
create: true
queues:
- name: root
submitacl: '*'

0 comments on commit 2fee993

Please sign in to comment.