You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bug has already been triaged by CrowdStrike engineering and was fixed in #569. We'll use this issue to track a workaround until the fix is released.
What happens
In an environment that requires a proxy for egress, the operator is not able to automatically list available image tags from the CrowdStrike registry to determine what sensor image to deploy. To confirm this, check the falcon-operator namespace, falcon-operator-controller-manager-XXX pod, manager container logs for output similar to the following:
Unable to get http response to list container registry tags: Get \"https://registry.crowdstrike.com/v2/falcon-sensor/us-2/release/falcon-sensor/tags/list\": dial tcp 44.241.67.109:443: connect: connection timed out
This bug was introduced in #549 when working around a bug in Artifactory.
Workaround
This bug occurs when allowing the operator to automatically select the container image from the CrowdStrike registry. To workaround it, we just need to manually specify a container image and pull token. This workaround is fully supported because it uses existing configuration options that the operator provides.
Create a FalconNodeSensor that references your CID from step 2 above, the new pull secret, and the image tag from step 4 (see basic example below, you may need to customize further for your environment):
apiVersion: falcon.crowdstrike.com/v1alpha1kind: FalconNodeSensormetadata:
name: falcon-node-sensorspec:
falcon:
apd: falsetags:
- daemonsettrace: none# TODO: set your CID from step 2cid: YOUR_CID_FROM_STEP_2installNamespace: falcon-systemnode:
# TODO: this is an example for US-2, you may need a different version tag or cloud regionimage: registry.crowdstrike.com/falcon-sensor/us-2/release/falcon-sensor:7.18.0-17106-1.falcon-linux.Release.US-2imagePullSecrets:
# this was created in step 7
- name: falcon-manual-pull-secretimagePullPolicy: Alwaysbackend: bpfterminationGracePeriod: 30disableCleanup: falsetolerations:
- effect: NoSchedulekey: node-role.kubernetes.io/masteroperator: Exists
- effect: NoSchedulekey: node-role.kubernetes.io/control-planeoperator: Exists
- effect: NoSchedulekey: node-role.kubernetes.io/infraoperator: ExistsupdateStrategy:
type: RollingUpdate
In a few moments, confirm your FalconNodeSensor shows the Success condition and that you see falcon-node-sensor-XXX pods in the falcon-system namespace.
The text was updated successfully, but these errors were encountered:
Important
This bug has already been triaged by CrowdStrike engineering and was fixed in #569. We'll use this issue to track a workaround until the fix is released.
What happens
In an environment that requires a proxy for egress, the operator is not able to automatically list available image tags from the CrowdStrike registry to determine what sensor image to deploy. To confirm this, check the
falcon-operator
namespace,falcon-operator-controller-manager-XXX
pod,manager
container logs for output similar to the following:This bug was introduced in #549 when working around a bug in Artifactory.
Workaround
This bug occurs when allowing the operator to automatically select the container image from the CrowdStrike registry. To workaround it, we just need to manually specify a container image and pull token. This workaround is fully supported because it uses existing configuration options that the operator provides.
Obtain CID, pull token, and image
Refer to the Falcon container pull script for more details.
FALCON_CLIENT_ID
,FALCON_CLIENT_SECRET
, andFALCON_CLOUD
environment variables (you can use the same API client created for the operator)../falcon-container-sensor-pull.sh --get-cid
outputs your customer ID (CID)../falcon-container-sensor-pull.sh --get-pull-token
outputs a base64-encoded Docker config JSON../falcon-container-sensor-pull.sh -t falcon-sensor --get-image-path
outputs the full name of the latest sensor image.Deploy the FalconNodeSensor
oc get
output).falcon-system
namespace.falcon-system
calledfalcon-manual-pull-secret
using the output from step 3:falcon-node-sensor-XXX
pods in the falcon-system namespace.The text was updated successfully, but these errors were encountered: