fix default k8 deployment
This commit is contained in:
@@ -76,7 +76,7 @@ diagnosticMode:
|
|||||||
shuffle:
|
shuffle:
|
||||||
## @param shuffle.baseUrl The external base URL under which Shuffle is reachable.
|
## @param shuffle.baseUrl The external base URL under which Shuffle is reachable.
|
||||||
##
|
##
|
||||||
baseUrl: ""
|
#baseUrl: ""
|
||||||
|
|
||||||
## ref: https://shuffler.io/docs/organizations
|
## ref: https://shuffler.io/docs/organizations
|
||||||
## This chart only supports single-tenant deployments at the moment
|
## This chart only supports single-tenant deployments at the moment
|
||||||
@@ -527,6 +527,8 @@ backend:
|
|||||||
## @param backend.openSearch.username The username that is used for authenticating with OpenSearch
|
## @param backend.openSearch.username The username that is used for authenticating with OpenSearch
|
||||||
##
|
##
|
||||||
username: admin
|
username: admin
|
||||||
|
|
||||||
|
password: StrongShufflePassword321!
|
||||||
## @param backend.openSearch.certificateFile The path to a custom OpenSearch certificate file
|
## @param backend.openSearch.certificateFile The path to a custom OpenSearch certificate file
|
||||||
##
|
##
|
||||||
certificateFile: ""
|
certificateFile: ""
|
||||||
@@ -1204,14 +1206,12 @@ orborus:
|
|||||||
value: "300"
|
value: "300"
|
||||||
- name: SHUFFLE_ORBORUS_EXCUTION_CONCURRENCY
|
- name: SHUFFLE_ORBORUS_EXCUTION_CONCURRENCY
|
||||||
value: "7"
|
value: "7"
|
||||||
- name: ENVIRONMENT_NAME
|
|
||||||
value: "Shuffle"
|
|
||||||
- name: BASE_URL
|
|
||||||
value: "http://shuffle-backend:5001"
|
|
||||||
- name: SHUFFLE_STATS_DISABLED
|
- name: SHUFFLE_STATS_DISABLED
|
||||||
value: "true"
|
value: "true"
|
||||||
- name: CLEANUP
|
- name: KUBERNETES_NAMESPACE
|
||||||
value: "false"
|
value: "shuffle"
|
||||||
|
- name: SHUFFLE_BASE_IMAGE_NAME
|
||||||
|
value: "frikky/shuffle"
|
||||||
## @param orborus.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for orborus containers
|
## @param orborus.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for orborus containers
|
||||||
##
|
##
|
||||||
extraEnvVarsCM: ""
|
extraEnvVarsCM: ""
|
||||||
@@ -1855,8 +1855,8 @@ volumePermissions:
|
|||||||
## @param volumePermissions.image.pullSecrets OS Shell + Utility image pull secrets
|
## @param volumePermissions.image.pullSecrets OS Shell + Utility image pull secrets
|
||||||
##
|
##
|
||||||
image:
|
image:
|
||||||
registry: public.ecr.aws
|
registry: docker.io
|
||||||
repository: bitnami/os-shell
|
repository: bitnamilegacy/os-shell
|
||||||
tag: 12-debian-12-r30
|
tag: 12-debian-12-r30
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
## Optionally specify an array of imagePullSecrets.
|
## Optionally specify an array of imagePullSecrets.
|
||||||
@@ -1917,20 +1917,14 @@ opensearch:
|
|||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
image:
|
image:
|
||||||
registry: public.ecr.aws
|
registry: docker.io
|
||||||
repository: bitnami/opensearch
|
repository: bitnamilegacy/opensearch
|
||||||
tag: "3.2.0"
|
tag: "3.2.0"
|
||||||
|
|
||||||
master:
|
master:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
extraEnvVars:
|
|
||||||
- { name: OPENSEARCH_JAVA_OPTS, value: "-Xms1g -Xmx1g" }
|
|
||||||
- { name: DISABLE_PERFORMANCE_ANALYZER_AGENT_CLI, value: "true" }
|
|
||||||
- { name: node.store.allow_mmap, value: "false" }
|
|
||||||
- { name: cluster.routing.allocation.disk.threshold_enabled, value: "false" }
|
|
||||||
|
|
||||||
data:
|
data:
|
||||||
replicaCount: 0
|
replicaCount: 1
|
||||||
coordinating:
|
coordinating:
|
||||||
replicaCount: 0
|
replicaCount: 0
|
||||||
ingest:
|
ingest:
|
||||||
|
|||||||
@@ -1586,7 +1586,7 @@ func initializeImages() {
|
|||||||
if len(os.Getenv("REGISTRY_URL")) > 0 {
|
if len(os.Getenv("REGISTRY_URL")) > 0 {
|
||||||
baseimageregistry = os.Getenv("REGISTRY_URL")
|
baseimageregistry = os.Getenv("REGISTRY_URL")
|
||||||
} else {
|
} else {
|
||||||
os.Setenv("REGISTRY_URL", baseimageregistry)
|
// os.Setenv("REGISTRY_URL", baseimageregistry)
|
||||||
}
|
}
|
||||||
|
|
||||||
os.Setenv("SHUFFLE_BASE_IMAGE_REGISTRY", baseimageregistry)
|
os.Setenv("SHUFFLE_BASE_IMAGE_REGISTRY", baseimageregistry)
|
||||||
|
|||||||
@@ -3893,7 +3893,7 @@ func sendAppRequest(ctx context.Context, incomingUrl, appName string, port int,
|
|||||||
if attempts < 2 {
|
if attempts < 2 {
|
||||||
// Check the service and fix it.
|
// Check the service and fix it.
|
||||||
if isKubernetes == "true" {
|
if isKubernetes == "true" {
|
||||||
log.Printf("[WARNING] App Redeployment in K8s isn't fully supported yet, but should be done for app %s with image %s.", appName, image)
|
log.Printf("[WARNING] App Redeployment in K8s isn't fully supported yet, but should be done for app %s with image %s.", appName, image)
|
||||||
} else {
|
} else {
|
||||||
_, err = findAppInfo(image, appName, true)
|
_, err = findAppInfo(image, appName, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user