Skip to content

Instantly share code, notes, and snippets.

View tapih's full-sized avatar
🏠
Working from home

Hiroshi Muraoka tapih

🏠
Working from home
View GitHub Profile
@tapih
tapih / README.md
Last active January 28, 2024 14:31
業務委託

はじめに

このドキュメントは @tapih の業務委託の希望条件をまとめています。

@tapih について

10X という会社で SRE を 3 年近くやっています。それ以前の経歴・実績は FindyLinkedin のページをご参照ください。

得意な技術領域は以下の通りです。

@tapih
tapih / 7skb.json
Last active March 28, 2021 13:38
My self-built keyboards' keymaps
{
"keyboard": "7skb/rev1",
"keymap": "7skb_rev1_layout_mine",
"layout": "LAYOUT",
"layers": [
[
"KC_GRV",
"KC_1",
"KC_2",
"KC_3",
@tapih
tapih / crd.yaml
Created June 1, 2020 04:55
Deeply nested CRD
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.2.9
creationTimestamp: null
name: foos.myso.cybozu.com
spec:
group: myso.cybozu.com
names:
@tapih
tapih / .eslintrc
Last active February 2, 2020 17:00
My ESLint configuration for TypeScript
{
"env": {
"browser": true
},
"extends": [
"plugin:react/recommended",
"prettier",
"airbnb"
],
"globals": {
@tapih
tapih / nginx-ubuntu.yaml
Created January 23, 2020 08:54
K8s deployments for debug
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
@tapih
tapih / kind-cluster.yaml
Last active September 12, 2019 00:26
Loki Demo Not on Kubernetes
kind: Cluster
apiVersion: kind.sigs.k8s.io/v1alpha3
kubeadmConfigPatches:
- |
apiVersion: kubeadm.k8s.io/v1beta1
kind: ClusterConfiguration
metadata:
name: config
kubernetesVersion: v1.14.3
networking:
@tapih
tapih / manifests.yaml
Last active September 28, 2023 12:26
Loki manifests
apiVersion: v1
kind: Namespace
metadata:
name: loki-stack
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: loki
namespace: loki-stack
@tapih
tapih / Makefile
Last active July 28, 2019 02:58
example of GNU make builtin functions
YAML:=hoge.yaml
FILES:=$(YAML) fuga.tar.gz ./foo/bar.json
all: \
abspath \
addprefix \
addsuffix \
basename \
dir \
notdir \