File tree Expand file tree Collapse file tree
src/client/datascience/jupyter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646 ([ #9701 ] ( https://github.com/Microsoft/vscode-python/issues/9701 ) )
4747
4848### Fixes
49+ 1 . add --ip=127.0.0.1 argument of jupyter server when running in k8s container
50+ ([ #9976 ] ( https://github.com/Microsoft/vscode-python/issues/9976 ) )
49511 . Correct the server and kernel text for when not connected to a server.
5052 ([ #9933 ] ( https://github.com/Microsoft/vscode-python/issues/9933 ) )
51531 . Make sure to clear variable list on restart kernel.
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export class NotebookStarter implements Disposable {
211211 // Check for a docker situation.
212212 try {
213213 const cgroup = await this . fileSystem . readFile ( '/proc/self/cgroup' ) . catch ( ( ) => '' ) ;
214- if ( ! cgroup . includes ( 'docker' ) ) {
214+ if ( ! cgroup . includes ( 'docker' ) && ! cgroup . includes ( 'kubepods' ) ) {
215215 return args ;
216216 }
217217 // We definitely need an ip address.
You can’t perform that action at this time.
0 commit comments