1import { k8sHomeAssProxy } from "../../deployF/servicesF/homeAssF/homeAssProxyF/mkjob.mts"2import { enterKlusterCtxs } from "../../deployF/k8sF/ctxF/klusterCtxF.mts"3import { isDirectlyRun } from "../../serverF/isDirectlyRunF.mts"4import * as klusterCfg from "./common.mjs"6const hostname = 'homeass.harv2.demokluster.com'8if (isDirectlyRun(import.meta.url)) {9 enterKlusterCtxs(klusterCfg, {importMetaUrl: import.meta.url})10 await k8sHomeAssProxy({hostname})11}12export default {importMetaUrl: import.meta.url, nonWcHostname: hostname}