Skip to content

Commit

Permalink
Adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
sleipnir committed Dec 15, 2023
1 parent 099e51c commit c582c86
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,31 +102,31 @@ To configure a new Runner Pool, simply define the following yaml file and apply
```yaml
# my-runner.yaml
---
apiVersion: flame.org/v1
kind: FlamePool
metadata:
name: my-runner-pool
namespace: default
spec:
podTemplate:
spec: # This is a pod template specification. See https://kubernetes.io/docs/concepts/workloads/pods/#pod-templates
containers:
- env:
- name: MY_VAR
value: "my-value"
resources:
limits:
cpu: 200m
memory: 1Gi
requests:
cpu: 200m
memory: 2Gi
volumeMounts:
- mountPath: /app/.cache/bakeware/
name: bakeware-cache
volumes:
- name: bakeware-cache
emptyDir: {}
apiVersion: flame.org/v1
kind: FlamePool
metadata:
name: my-runner-pool
namespace: default
spec:
podTemplate:
spec: # This is a pod template specification. See https://kubernetes.io/docs/concepts/workloads/pods/#pod-templates
containers:
- env:
- name: MY_VAR
value: "my-value"
resources:
limits:
cpu: 200m
memory: 1Gi
requests:
cpu: 200m
memory: 2Gi
volumeMounts:
- mountPath: /app/.cache/bakeware/
name: bakeware-cache
volumes:
- name: bakeware-cache
emptyDir: {}
```
Then:
Expand Down

0 comments on commit c582c86

Please sign in to comment.