I hereby claim:
- I am lukasz-kaniowski on github.
- I am lkaniowski (https://keybase.io/lkaniowski) on keybase.
- I have a public key ASCMTIFxfhGlyrevystEAx4nv5YrnxS-xX_iteWGuRDW9go
To claim this, I am signing this object:
| version: '3.1' | |
| services: | |
| db: | |
| image: postgres:13-alpine | |
| restart: always | |
| environment: | |
| - POSTGRES_USER=postgres | |
| - POSTGRES_PASSWORD=password | |
| - POSTGRES_DB=test |
I hereby claim:
To claim this, I am signing this object:
| # Application Load Balancer (ALB) Ingress Controller Deployment Manifest. | |
| # This manifest details sensible defaults for deploying an ALB Ingress Controller. | |
| # GitHub: https://github.com/kubernetes-sigs/aws-alb-ingress-controller | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| labels: | |
| app: alb-ingress-controller | |
| name: alb-ingress-controller | |
| namespace: kube-system |
| apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2 | |
| kind: Deployment | |
| metadata: | |
| name: nginx-deployment | |
| spec: | |
| selector: | |
| matchLabels: | |
| app: nginx | |
| replicas: 2 | |
| template: |
| module "eks" { | |
| source = "terraform-aws-modules/eks/aws" | |
| cluster_name = "eks" | |
| subnets = ["${module.vpc.public_subnets}"] | |
| vpc_id = "${module.vpc.vpc_id}" | |
| worker_groups = [ | |
| { | |
| instance_type = "m4.large" |
| terraform { | |
| backend "s3" {} | |
| } |
| const fs = require('fs') | |
| const writeStream = fs.createWriteStream('out.db') | |
| const { spawn } = require('child_process'); | |
| const mongodump = spawn('mongodump', ['--archive', '--db', 'databaseName']); | |
| mongodump.stdout.pipe(writeStream); |
| # Pull base image | |
| FROM resin/rpi-raspbian:wheezy | |
| MAINTAINER Nathan Racklyeft <[email protected]> | |
| # Install dependencies | |
| RUN apt-get update && \ | |
| DEBIAN_FRONTEND=noninteractive apt-get install -y \ | |
| build-essential \ | |
| git \ | |
| python \ |
Creating new project with ionic framework using yeoman ionic generator:
$ mkdir my-ionic-project && cd $_
$ yo ionic