Will this diagram work?
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;| { | |
| "meta": { | |
| "theme": "kendall" | |
| }, | |
| "basics": { | |
| "name": "Manuel Mendez", | |
| "image": "https://avatars.githubusercontent.com/u/708570?s=400&u=5411ad531c2d6904582878395ce2be515da5663c&v=4", | |
| "label": "Staff Software Engineer", | |
| "email": "i@m.mmlb.dev", | |
| "phone": "305-523-9213", |
I hereby claim:
To claim this, I am signing this object:
| ``` | |
| ┌─ attnF ─ Fast 1 | |
| ┌─┫ | |
| ┫ └─ attnF ─ Fast 2 | |
| │ | |
| └── attnS ─ Slow | |
| ``` |
A quick note on how I'm currently handling Blue/Green or A/B deployments with Terraform and AWS EC2 Auto Scaling.
In my particular use case, I want to be able to inspect an AMI deployment manually before disabling the previous deployment.
Hopefully someone finds this useful, and if you have and feedback please leave a comment or email me.
I build my AMI's using Packer and Ansible.
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <libnvpair.h> | |
| static void print(nvlist_t *list, char *name) { | |
| char *buf = NULL; | |
| size_t blen; | |
| int err; | |
| if ((err = nvlist_pack(list, &buf, &blen, NV_ENCODE_XDR, 0)) != 0) { | |
| printf("error:%d\n", err); |
| make: Entering directory `/home/ubuntu/mistify-os/build/buildroot' | |
| /usr/bin/make -j1 O=/home/ubuntu/mistify-os/build/mistify/base HOSTCC="/usr/bin/gcc" HOSTCXX="/usr/bin/g++" silentoldconfig | |
| make[1]: Entering directory `/home/ubuntu/mistify-os/build/buildroot' | |
| GEN /home/ubuntu/mistify-os/build/mistify/base/Makefile | |
| BR2_DEFCONFIG='' KCONFIG_AUTOCONFIG=/home/ubuntu/mistify-os/build/mistify/base/build/buildroot-config/auto.conf KCONFIG_AUTOHEADER=/home/ubuntu/mistify-os/build/mistify/base/build/buildroot-config/autoconf.h KCONFIG_TRISTATE=/home/ubuntu/mistify-os/build/mistify/base/build/buildroot-config/tristate.config BR2_CONFIG=/home/ubuntu/mistify-os/build/mistify/base/.config BR2_EXTERNAL=/home/ubuntu/mistify-os SKIP_LEGACY= /home/ubuntu/mistify-os/build/mistify/base/build/buildroot-config/conf --silentoldconfig Config.in | |
| make[1]: Leaving directory `/home/ubuntu/mistify-os/build/buildroot' | |
| /bin/sed -i -e "/\\<CONFIG_BLK_DEV_INITRD\\>/d" /home/ubuntu/mistify-os/build/mistify/base/build/linux-3.18.14/.co |
| crda: | |
| pkg: | |
| - installed | |
| wireless-regdb: | |
| pkg: | |
| - installed | |
| - sources: | |
| - wireless-regdb: salt://regdb/regdb.deb |
| gpsd: | |
| pkg: | |
| - installed | |
| - sources: | |
| - gpsd: salt://gpsd/gpsd.deb | |
| - gpsd-clients: salt://gpsd/gpsd-clients.deb | |
| - libgps20: salt://gpsd/libgps20.deb | |
| - libgps-dev: salt://gpsd/libgps-dev.deb | |
| - python-gps: salt://gpsd/python-gps.deb | |
| file.managed: |
| #include <stdio.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <termios.h> | |
| #include <fcntl.h> | |
| #include <unistd.h> | |
| #include <sys/ioctl.h> | |
| #include <sys/signal.h> | |
| #define DEVICE "/dev/ttyS1" |