This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ========== | |
| == CUDA == | |
| ========== | |
| CUDA Version 13.0.1 | |
| Container image Copyright (c) 2016-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| This container image and its contents are governed by the NVIDIA Deep Learning Container License. | |
| By pulling and using the container, you accept the terms and conditions of this license: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Generate certificate and random material | |
| openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048 | |
| mkdir -p /etc/ssl/private | |
| PUBLIC_IP=$(jq -r .publicIp < /tmp/${instance_id}_publicip.json) | |
| PUBLIC_IP_MOD=$(echo ${PUBLIC_IP} | tr . -) | |
| DNS_NAME="${PUBLIC_IP_MOD}.nip.io" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!ipxe | |
| kernel http://mirror.ip-projects.de/oracle/OL7/u8/os/x86_64/images/pxeboot/vmlinuz console=ttyS0,115200 | |
| initrd http://mirror.ip-projects.de/oracle/OL7/u8/os/x86_64/images/pxeboot/initrd.img |