-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea29abd
commit f95d2ef
Showing
7 changed files
with
77 additions
and
57 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
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 |
---|---|---|
@@ -1,10 +1,8 @@ | ||
{{- if .Values.containerRegistry.enabled -}} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: container-rg-config | ||
type: kubernetes.io/dockerconfigjson | ||
data: | ||
.dockerconfigjson: {{ template "dockerconfigjson.b64enc" . }} | ||
{{- end }} | ||
|
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 |
---|---|---|
@@ -1,73 +1,73 @@ | ||
# Default values for calrissian-session. | ||
# This is a YAML-formatted file. | ||
|
||
# number of pods | ||
# -- number of pods, one is usually enough | ||
replicaCount: 1 | ||
|
||
# container image for running the pod | ||
# -- Calrissian container image for running the Calrissian pod | ||
image: | ||
repository: terradue/calrissian-session:develop | ||
pullPolicy: IfNotPresent | ||
repository: ghcr.io/terradue/calrissian-session/calrissian-session | ||
pullPolicy: Always | ||
tag: latest | ||
|
||
# -- specify the resources for the Calrissian pod | ||
resources: | ||
requests: | ||
memory: "8Gi" | ||
cpu: "4" | ||
limits: | ||
memory: "12Gi" | ||
cpu: "4" | ||
|
||
# -- Service account to use | ||
serviceAccount: | ||
# Specifies whether a service account should be created | ||
create: false | ||
# Annotations to add to the service account | ||
# -- Specifies whether a service account should be created | ||
create: true | ||
# -- Annotations to add to the service account | ||
annotations: {} | ||
# The name of the service account to use. | ||
# -- The name of the service account to use. | ||
name: "calrissian-sa" | ||
|
||
# optional pod annotations | ||
# -- optional pod annotations | ||
podAnnotations: {} | ||
|
||
# additional settings for the pod security context | ||
# -- additional settings for the pod security context | ||
podSecurityContext: {} | ||
|
||
# running with privileged set to true allows running podman in the pod | ||
# -- running with privileged set to true allows running podman in the Calrissian pod | ||
securityContext: | ||
privileged: true | ||
|
||
service: | ||
type: ClusterIP | ||
port: 80 | ||
# -- specify the node selector for the Calrissian pod and the Calrissian worker pods | ||
nodeSelector: | ||
k8s.scaleway.com/pool-name: processing-node-pool-iride-xl | ||
|
||
# specify the resources for the pod | ||
resources: {} | ||
|
||
# specify the node selector | ||
nodeSelector: {} | ||
|
||
# tolerations | ||
# -- tolerations | ||
tolerations: [] | ||
|
||
# node affinity | ||
# -- node affinity | ||
affinity: {} | ||
|
||
# ReadWriteMany storage class to use | ||
# -- ReadWriteMany storage class for Calrissian worker | ||
storageClass: openebs-kernel-nfs-scw | ||
# -- size of the ReadWriteMany volume for Calrissian executions | ||
volumeSize: 10Gi | ||
|
||
# size of the ReadWriteMany volumes | ||
persistence: | ||
calrissian: 10Gi | ||
|
||
# use s3, if true, configMaps are mounted to access the S3 bucket | ||
# -- use s3, if true, configMaps are mounted to access the S3 bucket | ||
s3: | ||
enabled: false | ||
access_key_id: <access_key_id> | ||
secret_access_key: <secret_access_key> | ||
region: <s3 region> | ||
endpoint_url: <s3 service URL> | ||
signature_version: s3v4 | ||
|
||
# enable the configuration of the docker config file on the pod (support for podman pull) | ||
containerRegistry: | ||
enabled: true | ||
access_key_id: "SC...8Z" | ||
secret_access_key: "bf...dc6" | ||
region: "..." | ||
endpoint_url: "https://s3.....cloud" | ||
signature_version: s3v4 | ||
bucket_pattern: 's3:\/\/ir....tplace\/.*' | ||
|
||
# container registries credentials | ||
# -- container registries credentials | ||
imageCredentials: | ||
# registry is the container registry | ||
- registry: https://index.docker.io/v1/ | ||
# auth is the base64 auth string (see your ~/.docker/config.json file) | ||
auth: "" | ||
# -- registry is the container registry | ||
- registry: ghcr.io # mandatory | ||
# -- auth is the base64 auth string (see your ~/.docker/config.json file) | ||
auth: "bXNhZ2....RVURt" | ||
- 'https://index.docker.io/v1/': | ||
auth: "ZmFi...mlRTldqZw==" |