Use nip.io instead of xip.io for jupyter domain suggestion
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
2abc531653
commit
a904314941
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ export default class ClusterStore {
|
|||
this.state.applications.jupyter.hostname =
|
||||
serverAppEntry.hostname ||
|
||||
(this.state.applications.ingress.externalIp
|
||||
? `jupyter.${this.state.applications.ingress.externalIp}.xip.io`
|
||||
? `jupyter.${this.state.applications.ingress.externalIp}.nip.io`
|
||||
: '');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -110,7 +110,7 @@ describe('Clusters Store', () => {
|
|||
|
||||
expect(
|
||||
store.state.applications.jupyter.hostname,
|
||||
).toEqual(`jupyter.${store.state.applications.ingress.externalIp}.xip.io`);
|
||||
).toEqual(`jupyter.${store.state.applications.ingress.externalIp}.nip.io`);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue