-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #417 from CARV-ICS-FORTH/hpc
add examples for mpi jobs
- Loading branch information
Showing
7 changed files
with
97 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
## @section Global parameters | ||
## Global Frisbee Platform parameters | ||
## Please, note that this will override the image parameters, including dependencies, configured to use the global value | ||
## | ||
## @param global.domainName DNS name for making Telemetry stack accessible outside the cluster. | ||
## @param global.ingressClass Type of ingres for making Telemetry stack accessible outside the cluster. | ||
global: | ||
domainName: knot-platform.eu | ||
ingressClass: nginx | ||
|
||
|
||
## @section Frisbee Operator parameters | ||
## @param operator.enabled Set it to false for running the controller outside the Kubernetes Cluster. | ||
## @param operator.name Defines the name of the controller. | ||
## @param operator.advertisedHost Defines the Public IP of the controller, when operator.enabled==false. | ||
## @param operator.webhook.k8s.enabled Enables the Admission webhooks | ||
## @param operator.webhook.k8s.port Sets the port for the Admission/Mutation webhook server. | ||
## @param operator.webhook.grafana.port Sets the port for the telemetry webhook server. | ||
operator: | ||
enabled: true | ||
name: "frisbee-operator" | ||
advertisedHost: "139.91.92.82" | ||
webhook: | ||
k8s: | ||
enabled: true | ||
port: 9443 | ||
|
||
grafana: | ||
port: 6666 | ||
|
||
## @section Provision of dynamic volumes | ||
## @param openebs.enabled Whether to enable OpenEBS | ||
## @param openebs.storagePath The filesystem dir where volumes will be provisioned | ||
## @param openebs.nfs-provisioner.enabled Will enable dynamic NFS servers | ||
## @param openebs.ndm.enabled Whether to enable block device management | ||
## @param openebs.ndm.filters.includePaths Include block devices for dynamic block provisioning | ||
## @param openebs.ndm.filters.excludePaths Exclude block devices for dynamic block provisioning | ||
openebs: | ||
enabled: true | ||
storagePath: /mnt/local | ||
nfs-provisioner: | ||
enabled: true | ||
ndm: | ||
enabled: false | ||
|
||
|
||
|
||
## @section Chaos Injection Parameters | ||
## @param chaos-mesh.enabled Whether to enable the Chaos controllers | ||
## @param chaos-mesh.controllerManager.replicaCount Number of Chaos-Mesh controller replicas | ||
## @param chaos-mesh.chaosDaemon.runtime Specifies which container runtime to use. | ||
## @param chaos-mesh.chaosDaemon.socketPath Specifies the container runtime socket. | ||
chaos-mesh: | ||
enabled: false | ||
controllerManager: | ||
replicaCount: 1 | ||
chaosDaemon: | ||
runtime: docker | ||
socketPath: /var/run/docker.sock | ||
|
||
|
||
## @section General purpose, web-based UI for Kubernetes clusters | ||
## @param kubernetes-dashboard.enabled Whether to enable Dashboard | ||
kubernetes-dashboard: | ||
enabled: true | ||
|
||
|
||
## @param cert-manager.enabled Enables the certificate manager | ||
## @param cert-manager.installCRDs Install CRDs for the certificate manager | ||
cert-manager: | ||
enabled: true | ||
installCRDs: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters