Skip to content

Commit 8c0930c

Browse files
committed
1 parent dd39cce commit 8c0930c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ The IBM Cloud Schematics Agents extends Schematics ability to reach your private
44

55
This Agent repository helps you to provision the infrastructure required for an Agent and deploys the services on the provisioned infrastructure.
66

7+
8+
## Release notes
9+
This release contains the following fixes
10+
- Unknown certificate issue while trying to clone repo
11+
- Intermittent `409` error for JobRunner Service
12+
- Incomplete runtime logs
13+
- Bug Fixes
14+
15+
716
## Table of Contents
817

918
1. [Prerequisites](##Prerequisites)

templates/service/locals.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ locals {
1818
#Schematics endpoint url (optional: private CSE or VPE)
1919
schematics_endpoint = "https://private-${var.schematics_endpoint_location}.schematics.cloud.ibm.com"
2020
#Schematics agent jobrunner image ID
21-
schematics_jobrunner_image = "icr.io/schematics-remote/schematics-job-runner:eb8ca280-179"
21+
schematics_jobrunner_image = "icr.io/schematics-remote/schematics-job-runner:bc7e02b2-205"
2222
#Schematics agent job12 image ID
2323
schematics_runtime_job_image = "icr.io/schematics-remote/schematics-agent-ws-job-20220704:60824f4e-276"
2424
#schematics_sandbox_image
25-
schematics_sandbox_image = "icr.io/schematics-remote/schematics-sandbox:9bdc3645-283"
25+
schematics_sandbox_image = "icr.io/schematics-remote/schematics-sandbox:d94e2078-339"
2626
#Schematics environment (dev|stage|prod)
2727
schematics_environment = "Prod"
2828
}

templates/service/sandbox.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ resource "kubernetes_config_map" "sandbox" {
3636
SANDBOX_LOGGERLEVEL = "-1"
3737
SANDBOX_SHUTDOWNREPORTINTERVAL = "600"
3838
SANDBOX_WHITELISTEXTN = ".tf,.tfvars,.md,.yaml,.sh,.txt,.yml,.html,.gitignore,.tf.json,license,.js,.pub,.service,_rsa,.py,.json,.tpl,.cfg,.ps1,.j2,.zip,.conf,.crt,.key,.der,.jacl,.properties,.cer,.pem,.tmpl,.netrc"
39+
SANDBOX_INSECURESKIPVERIFY = "false"
40+
3941
}
4042
depends_on = [kubernetes_namespace.namespace]
4143
}

0 commit comments

Comments
 (0)