Currently focussing on table-stakes.
- Project settings
- Frame rate
- Aspect ratio
- [🚧] Asset Manager
AWSTemplateFormatVersion: 2010-09-09 | |
Description: 'Registers ecs tasks to a second target group' | |
Parameters: | |
ClusterArn: | |
Description: 'ANR of cluster the service resides in' | |
Type: String | |
ServiceName: | |
Description: 'Name of the service to register' | |
Type: String | |
ContainerName: |
#!/bin/bash | |
# | |
# This script is meant to be run on Ubuntu Trusty (14.04) as root | |
# | |
# It is expected that you are following the guide at: | |
# https://kubernetes.io/docs/setup/independent/install-kubeadm/ | |
# https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/ | |
# | |
# Particularly you will need to have (BEFORE you start): | |
# - binutils, ebtables, socat installed |
belongs_to
association does not automatically save the object. It does not save the associated object either.has_one
association, that object is automatically saved (in order to update its foreign key).has_one
association) is unsaved (that is, new_record?
returns true) then the child objects are not saved. They will automatically when the parent object is saved.#!/bin/sh | |
# This program has two feature. | |
# | |
# 1. Create a disk image on RAM. | |
# 2. Mount that disk image. | |
# | |
# Usage: | |
# $0 <dir> <size> | |
# |