From 24356d34d2693d57a16c0b659576a9ae476001a2 Mon Sep 17 00:00:00 2001 From: "gvindiol@ucsd.edu" <gvindiol@ucsd.edu> Date: Fri, 1 Dec 2023 17:49:47 -0800 Subject: [PATCH] MetaXRPlugin Linux Workaround Tests --- CyberProject.uproject | 3 ++- docker/CyberarchLinuxPixelStreamingClientLocal | 7 +++++-- k8s/PixelStreaming-CyberArch-deployment.yml | 15 ++++++++------- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CyberProject.uproject b/CyberProject.uproject index 1e763d3..bf747a8 100644 --- a/CyberProject.uproject +++ b/CyberProject.uproject @@ -192,7 +192,8 @@ "MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/8313d8d7e7cf4e03a33e79eb757bccba", "SupportedTargetPlatforms": [ "Win64", - "Android" + "Android", + "Linux" ] }, { diff --git a/docker/CyberarchLinuxPixelStreamingClientLocal b/docker/CyberarchLinuxPixelStreamingClientLocal index a05b399..a166248 100644 --- a/docker/CyberarchLinuxPixelStreamingClientLocal +++ b/docker/CyberarchLinuxPixelStreamingClientLocal @@ -2,7 +2,9 @@ FROM gitlab-registry.nrp-nautilus.io/cyberarch/webxrpixelstreaming/unreal-engine:runtime-pixel-streaming USER root - + +RUN apt update && apt install -y x11-xserver-utils libnss3 libatk1.0-0 libxkbcommon-x11-0 libpangocairo-1.0-0 && apt clean + COPY Linux /home/ue4/project # Expose TCP port 80 so external applications can access the web server @@ -18,7 +20,8 @@ RUN chmod -R 777 . # Note that we use 127.0.0.1 as the IP address for Cirrus here, # which only works if both containers are running on the same host system in host networking mode USER ue4 -CMD ["/home/ue4/project/WebXRPixelStreaming.sh", "-RenderOffscreen", "-Windowed", "-ForceRes", "-ResX=1920", "-ResY=1080", "-PixelStreamingIP=127.0.0.1", "-PixelStreamingPort=8888", "-PixelStreamingEnableHMD", "-AllowPixelStreamingCommands=true"] +#ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility,video,graphics,display +CMD ["/home/ue4/project/CyberProject.sh", "-RenderOffscreen", "-Windowed", "-ForceRes", "-ResX=1920", "-ResY=1080", "-PixelStreamingIP=127.0.0.1", "-PixelStreamingPort=8888", "-AllowPixelStreamingCommands=true"] #/home/ue4/project/WebXRPixelStreaming.sh -RenderOffscreen -Windowed -ForceRes -ResX=1920 -ResY=1080 -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888 -PixelStreamingEnableHMD -AllowPixelStreamingCommands=true #/usr/local/bin/node /SignallingWebServer/cirrus.js --peerConnectionOptions "{\"iceServers\":[{\"urls\":[\"stun:stun.nrp-nautilus.io:3478\",\"turns:turn.nrp-nautilus.io:3478\"],\"username\":\"1733189766-x-auth-user\",\"credential\":\"hpoSQmZYVF8oLXZ8dqjOBP1AfTM=\"}]}" --UseHttps true \ No newline at end of file diff --git a/k8s/PixelStreaming-CyberArch-deployment.yml b/k8s/PixelStreaming-CyberArch-deployment.yml index de699a3..220835d 100644 --- a/k8s/PixelStreaming-CyberArch-deployment.yml +++ b/k8s/PixelStreaming-CyberArch-deployment.yml @@ -1,7 +1,7 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: ue-webxr-ps + name: ue-cyberarch-ps namespace: cyberarch spec: replicas: 1 @@ -21,8 +21,8 @@ spec: - key: nvidia.com/gpu.product operator: In values: - - NVIDIA-GeForce-RTX-4090 - #- NVIDIA-GeForce-GTX-1080-Ti + #- NVIDIA-GeForce-RTX-4090 + - NVIDIA-GeForce-GTX-1080-Ti #- NVIDIA-GeForce-RTX-2080-Ti #- NVIDIA-A100-PCIE-40GB-MIG-2g.10gb - key: nautilus.io/vis @@ -46,6 +46,7 @@ spec: imagePullPolicy: Always securityContext: privileged: false + runAsUser: 0 resources: limits: nvidia.com/gpu: 1 @@ -55,8 +56,8 @@ spec: nvidia.com/gpu: 1 memory: "16Gi" cpu: "4" - #command: ["/bin/bash"] - #args: ["-c", "sleep infinity"] + command: ["/bin/bash"] + args: ["-c", "sleep infinity"] - name: ue-cyberarch-signalling image: "gitlab-registry.nrp-nautilus.io/cyberarch/webxrpixelstreaming/pixel-streaming-signalling-server:5.3" imagePullPolicy: Always @@ -73,8 +74,8 @@ spec: ports: - containerPort: 80 - containerPort: 443 - command: ["/usr/local/bin/node"] - args: ["/SignallingWebServer/cirrus.js", "--peerConnectionOptions", "{\"iceServers\":[{\"urls\":[\"stun:stun.nrp-nautilus.io:3478\",\"turns:turn.nrp-nautilus.io:3478\"],\"username\":\"1733189766-x-auth-user\",\"credential\":\"hpoSQmZYVF8oLXZ8dqjOBP1AfTM=\"}]}", "--UseHTTPS", "true"] + #command: ["/usr/local/bin/node"] + #args: ["/SignallingWebServer/cirrus.js", "--peerConnectionOptions", "{\"iceServers\":[{\"urls\":[\"stun:stun.nrp-nautilus.io:3478\",\"turns:turn.nrp-nautilus.io:3478\"],\"username\":\"1733189766-x-auth-user\",\"credential\":\"hpoSQmZYVF8oLXZ8dqjOBP1AfTM=\"}]}", "--UseHTTPS", "true"] #command: ["/bin/bash"] #args: ["-c", "sleep infinity"] volumeMounts: -- GitLab