Skip to content

Commit

Permalink
feat(orb-722): Remove ORB_OTEL_ENABLE=true from provisioning command
Browse files Browse the repository at this point in the history
  • Loading branch information
gpazuch committed Mar 29, 2023
1 parent 13518f0 commit a19e2fb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions ui/src/app/pages/fleet/agents/key/agent.key.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export class AgentKeyComponent implements OnInit {
-e ORB_CLOUD_MQTT_CHANNEL_ID=${ this.agent.channel_id } \\
-e ORB_CLOUD_MQTT_KEY=${ this.agent.key } \\
-e PKTVISOR_PCAP_IFACE_DEFAULT=auto \\
-e ORB_OTEL_ENABLE=true \\
ns1labs/orb-agent`;

this.command2show = `docker run -d --restart=always --net=host \\
Expand All @@ -52,7 +51,6 @@ ns1labs/orb-agent`;
-e ORB_CLOUD_MQTT_CHANNEL_ID=${ this.agent.channel_id } \\
-e ORB_CLOUD_MQTT_KEY=${ this.agent.key } \\
-e PKTVISOR_PCAP_IFACE_DEFAULT=<mark>auto</mark> \\
-e ORB_OTEL_ENABLE=true \\
ns1labs/orb-agent`;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export class AgentProvisioningComponent implements OnInit {
-e ORB_CLOUD_MQTT_CHANNEL_ID=${ this.agent?.channel_id } \\
-e ORB_CLOUD_MQTT_KEY="AGENT_KEY" \\
-e PKTVISOR_PCAP_IFACE_DEFAULT=auto \\
-e ORB_OTEL_ENABLE=true \\
ns1labs/orb-agent`;

this.command2show = `docker run -d --restart=always --net=host \\
Expand All @@ -59,7 +58,6 @@ ns1labs/orb-agent`;
-e ORB_CLOUD_MQTT_CHANNEL_ID=${ this.agent?.channel_id } \\
-e ORB_CLOUD_MQTT_KEY=<mark>AGENT_KEY</mark> \\
-e PKTVISOR_PCAP_IFACE_DEFAULT=<mark>auto</mark> \\
-e ORB_OTEL_ENABLE=true \\
ns1labs/orb-agent`;
}
}
Expand Down

0 comments on commit a19e2fb

Please sign in to comment.