Skip to content

Commit

Permalink
Merge pull request #116 from grycap/devel
Browse files Browse the repository at this point in the history
Restrict K8s input values
  • Loading branch information
micafer authored Mar 5, 2024
2 parents 89fc1ed + d9fe288 commit ddce320
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions templates/k8s_galaxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,26 @@ topology_template:
default: "docker"
constraints:
- valid_values: [ docker ]
wn_num:
type: integer
description: Number of WNs in the cluster
default: 2
required: yes
wn_cpus:
type: integer
description: Number of CPUs for the WNs
default: 4
required: yes
constraints:
- valid_values: [ 4, 8, 16, 32, 64 ]
wn_mem:
type: scalar-unit.size
description: Amount of Memory for the WNs
default: 8 GB
required: yes
constraints:
- valid_values: [ 8 GB, 16 GB, 32 GB, 64 GB, 128 GB, 256 GB, 512 GB ]


node_templates:

Expand Down

0 comments on commit ddce320

Please sign in to comment.