Skip to content

Instantly share code, notes, and snippets.

View Iamrazy's full-sized avatar
🎯
Focusing

I_am_crazy Iamrazy

🎯
Focusing
View GitHub Profile
@Iamrazy
Iamrazy / ecs.yml
Created February 11, 2021 14:57 — forked from tkgregory/ecs.yml
An example CloudFormation template for deployment of a container to ECS.
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
SubnetID:
Type: String
Resources:
Cluster:
Type: AWS::ECS::Cluster
Properties:
ClusterName: deployment-example-cluster
LogGroup:
@Iamrazy
Iamrazy / devops_training.txt
Created March 10, 2020 05:31 — forked from ssmythe/devops_training.txt
Training materials for DevOps
======
Videos
======
DevOps
What is DevOps? by Rackspace - Really great introduction to DevOps
https://www.youtube.com/watch?v=_I94-tJlovg
Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept)
@Iamrazy
Iamrazy / Jenkinsfile
Created March 4, 2020 11:05 — forked from teeks99/Jenkinsfile
Jenkinsfile with e-mail
pipeline {
agent any
stages {
stage('Build'){
steps {
echo "Running job: ${env.JOB_NAME}\nbuild: ${env.BUILD_ID} - ${env.BUILD_URL}\nblue ocean: ${env.RUN_DISPLAY_URL}"
}
}
}
@Iamrazy
Iamrazy / ansible-github.yml
Created July 6, 2019 09:08 — forked from devynspencer/ansible-github.yml
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root