mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00
disable aws pipe for now
This commit is contained in:
parent
334afd83b2
commit
cf758e2db0
BIN
dist/index.js
generated
vendored
BIN
dist/index.js
generated
vendored
Binary file not shown.
BIN
dist/index.js.map
generated
vendored
BIN
dist/index.js.map
generated
vendored
Binary file not shown.
@ -50,7 +50,8 @@ class Kubernetes implements ProviderInterface {
|
|||||||
const body: k8s.V1ConfigMap = new k8s.V1ConfigMap();
|
const body: k8s.V1ConfigMap = new k8s.V1ConfigMap();
|
||||||
body.data = {};
|
body.data = {};
|
||||||
body.data['logs'] = logs;
|
body.data['logs'] = logs;
|
||||||
body.metadata = { name: `${this.jobName}-logs` };
|
body.metadata = { name: `${this.jobName}-logs`, namespace: this.namespace, labels: { app: 'unity-builder' } };
|
||||||
|
RemoteClientLogger.log(`Pushing to Kubernetes ConfigMap`);
|
||||||
await this.kubeClient.createNamespacedConfigMap(this.namespace, body);
|
await this.kubeClient.createNamespacedConfigMap(this.namespace, body);
|
||||||
RemoteClientLogger.log(`Pushed logs to Kubernetes ConfigMap`);
|
RemoteClientLogger.log(`Pushed logs to Kubernetes ConfigMap`);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user