发布1.0.5版本

This commit is contained in:
ilovintit
2025-06-15 21:18:57 +08:00
parent bb4efa81aa
commit daf32fccc2
3 changed files with 9 additions and 3 deletions
Generated Vendored
+4 -1
View File
@@ -198991,7 +198991,10 @@ async function run() {
const kc = new KubeConfig();
kc.loadFromFile(require$$1$2.join(workspace, clusterPath + deployConfig.cluster + '.yaml'));
const applyHttps = await kc.applyToHTTPSOptions({
httpsAgent: new Agent({
headers: {
'x-kubernetes-passthrough-auth': 'true'
},
agent: new Agent({
rejectUnauthorized: false,
servername: '127.0.0.1',
checkServerIdentity: () => undefined
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+4 -1
View File
@@ -47,7 +47,10 @@ export async function run(): Promise<void> {
path.join(workspace, clusterPath + deployConfig.cluster + '.yaml')
)
const applyHttps = await kc.applyToHTTPSOptions({
httpsAgent: new Agent({
headers: {
'x-kubernetes-passthrough-auth': 'true'
},
agent: new Agent({
rejectUnauthorized: false,
servername: '127.0.0.1',
checkServerIdentity: () => undefined