Skip to content

Instantly share code, notes, and snippets.

View pmatv's full-sized avatar

Petro Matviichuk pmatv

View GitHub Profile
@pmatv
pmatv / action.yaml
Created June 1, 2021 07:43
Run Rspec tests in parallel
name: app
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
services:
@pmatv
pmatv / aws-auth-cm.sh
Last active August 28, 2022 03:28
Map IAM group to EKS ConfigMap
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
IAM_GROUP=${1:-admins}
EKS_ROLE_ARN=${2:-arn:aws:iam::111122223333:role/eks-node-role}
RBAC_GROUP=${3:-system:masters}