Skip to content

Commit

Permalink
Merge pull request #739 from daniellutz/code-server-not-update-extens…
Browse files Browse the repository at this point in the history
…ions

RHOAIENG-7489: Code-Server: Prevent auto updating of the pre-installed extensions
  • Loading branch information
openshift-merge-bot[bot] authored Oct 10, 2024
2 parents d2c43f2 + 40edcc5 commit 0fc2e6b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion codeserver/ubi9-python-3.11/run-code-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ universal_json_settings='{
"python.defaultInterpreterPath": "/opt/app-root/bin/python3",
"telemetry.telemetryLevel": "off",
"telemetry.enableTelemetry": false,
"workbench.enableExperiments": false
"workbench.enableExperiments": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false
}'

# Define python debuger settings
Expand Down
4 changes: 3 additions & 1 deletion codeserver/ubi9-python-3.9/run-code-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ universal_json_settings='{
"python.defaultInterpreterPath": "/opt/app-root/bin/python3",
"telemetry.telemetryLevel": "off",
"telemetry.enableTelemetry": false,
"workbench.enableExperiments": false
"workbench.enableExperiments": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false
}'

# Define python debuger settings
Expand Down

0 comments on commit 0fc2e6b

Please sign in to comment.