Skip to content

Instantly share code, notes, and snippets.

View Infra-Red's full-sized avatar

Andrei Krasnitski Infra-Red

  • Rotterdam, the Netherlands
View GitHub Profile
Sat Jul 7 10:43:41 UTC 2018
@Infra-Red
Infra-Red / automation-template.json
Created September 27, 2017 14:33
automation-template
{
"auth": {
"authoritativeSet": false,
"disabled": true,
"usersDeleted": [],
"usersWanted": []
},
"backupVersions": [],
"indexConfigs": [],
"mongoDbVersions": [
@Infra-Red
Infra-Red / keybase.md
Created February 14, 2017 13:21
keybase.md

Keybase proof

I hereby claim:

  • I am infra-red on github.
  • I am akrasnitski (https://keybase.io/akrasnitski) on keybase.
  • I have a public key ASCSa5JSl3A7U0kuloLJRZSxJw3jh5YXBlIfCsLapu6ylgo

To claim this, I am signing this object:

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILcYwJWfvq/qANjjoYWaIh9SLtBH20LO46EPKMgEnurz andrei.krasnitski@altoros.com
@Infra-Red
Infra-Red / stub-infra.yml
Created September 2, 2016 14:44
BOSH-Lite OpenStack stub-infra
---
name: bosh-lite
director_uuid: (( meta.director_uuid ))
meta: (( merge ))
releases:
- name: bosh
version: "256.2"
url: https://bosh.io/d/github.com/cloudfoundry/bosh?v=256.2
@Infra-Red
Infra-Red / stub-meta.yml
Created September 2, 2016 14:43
BOSH-Lite OpenStack stub-meta
---
meta:
director_uuid:
elastic_ip:
instance_type: m1.large
networks:
- name: default
subnets:
- range: x.x.x.x/x
gateway: x.x.x.x
@Infra-Red
Infra-Red / ALTOROS_CLA.md
Last active August 3, 2016 15:41 — forked from CLAassistant/SAP_CLA
Altoros Individual Contributor License Agreement

###Altoros Individual Contributor License Agreement

Thank you for your interest in contributing to open source software projects (“Projects”) made available by Altoros Americas LLC or its affiliates (“Altoros”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Altoros in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact opensource@altoros.com.

You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions.

Copyright License. At the time the Contribution is submitted, you hereby irrevocably

@Infra-Red
Infra-Red / docker-private-push.sh
Last active April 13, 2018 16:30
Push private docker hub images to Cloud Foundry
#!/bin/bash
if [ -z $3 ]; then
echo "Usage: $0 <app> <image> <start command>"
exit 1
fi
# Dockerhub details
echo "Login with your Docker ID."
echo -n "Username: "