@forgezero/agent 0.1.62 → 0.1.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -292,7 +292,7 @@ function systemdAgentEgressDirectives(loopbackTcpPorts = []) {
292
292
  }
293
293
 
294
294
  // src/version.ts
295
- var VERSION = "0.1.62";
295
+ var VERSION = "0.1.63";
296
296
 
297
297
  // src/otel-collector.ts
298
298
  var FORGEZERO_OTEL_COLLECTOR_UNIT = "forgezero-otel-collector.service";
@@ -380,8 +380,6 @@ function guestBootstrapOperations(profile, attested = Boolean(profile.confidenti
380
380
  "FZ_AGENT_USER=forgezero-agent",
381
381
  "FZ_SOCKET_PATH=/run/forgezero/vault.sock",
382
382
  "FZ_SEED_CREDENTIAL_PATH=/etc/forgezero/creds/agent-seed.cred",
383
- "FZ_GIT_CREDENTIAL_PATH=/etc/forgezero/creds/git-deploy-key.cred",
384
- "FZ_GIT_PUBLIC_KEY_PATH=/etc/forgezero/git/deploy.pub",
385
383
  "FZ_DEPLOY_ROOT=/opt/forgezero",
386
384
  `FZ_DEPLOY_PULL=${hasEnrolment}`,
387
385
  `FZ_AGENT_EGRESS_ENFORCE=${hasEnrolment}`,
@@ -380,8 +380,6 @@ function guestBootstrapOperations(profile, attested = Boolean(profile.confidenti
380
380
  "FZ_AGENT_USER=forgezero-agent",
381
381
  "FZ_SOCKET_PATH=/run/forgezero/vault.sock",
382
382
  "FZ_SEED_CREDENTIAL_PATH=/etc/forgezero/creds/agent-seed.cred",
383
- "FZ_GIT_CREDENTIAL_PATH=/etc/forgezero/creds/git-deploy-key.cred",
384
- "FZ_GIT_PUBLIC_KEY_PATH=/etc/forgezero/git/deploy.pub",
385
383
  "FZ_DEPLOY_ROOT=/opt/forgezero",
386
384
  `FZ_DEPLOY_PULL=${hasEnrolment}`,
387
385
  `FZ_AGENT_EGRESS_ENFORCE=${hasEnrolment}`,
@@ -25,7 +25,7 @@ export interface OperatorMetalBootstrapRequest {
25
25
  sshPublicKeyFiles: string[];
26
26
  };
27
27
  }
28
- export type OperatorPlatformBootstrapMode = 'prepare' | 'apply' | 'status';
28
+ export type OperatorPlatformBootstrapMode = 'apply' | 'status';
29
29
  export type OperatorMetalBootstrapMode = 'apply' | 'genesis' | 'rehearsal' | 'rehearsal-cleanup' | 'status';
30
30
  export interface OperatorPlatformBootstrapPlan {
31
31
  kind: 'platform-remote';