oneuptime/HelmChart/cloud-marketplace-install.sh

23 lines
822 B
Bash
Raw Normal View History

2021-11-22 23:10:19 +00:00
# This document is for launching OneUptime VM's on Azure, GCP and AWS.
2020-09-14 08:25:49 +00:00
# Follow the installation steps below.
# Azure: https://docs.microsoft.com/en-us/azure/marketplace/partner-center-portal/azure-vm-create-offer#technical-configuration
2020-04-07 14:06:13 +00:00
# Add these lines to: sudo crontab -e
# Run this on Reboot.
2021-11-22 23:10:19 +00:00
@reboot sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled
2020-04-07 14:06:13 +00:00
# Run this once every 24 hours.
2021-11-22 23:10:19 +00:00
0 0 * * * sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled
2020-04-27 17:58:44 +00:00
## FOR AWS EC2
# Run this on Reboot.
2021-11-22 23:10:19 +00:00
@reboot sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled aws-ec2
2020-04-27 17:58:44 +00:00
# Run this once every 24 hours.
2021-11-22 23:10:19 +00:00
0 0 * * * sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled aws-ec2