Skip to content

Instantly share code, notes, and snippets.

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

wate wate

🏠
Working from home
View GitHub Profile
@wate
wate / Vagrantfile
Last active October 20, 2018 08:15
Let's Scratch 3.0 GUI
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "histudy/stretch"
config.vm.network "forwarded_port", guest: 8601, host: 8601
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
# Ansibleのインストール
@wate
wate / inventory.yml
Last active March 12, 2019 09:24
インベントリファイルを YAML 形式で書く https://tekunabe.hatenablog.jp/entry/2019/03/10/ansible_inventory_yaml
---
# 元ネタ: https://tekunabe.hatenablog.jp/entry/2019/03/10/ansible_inventory_yaml
all:
hosts:
web01:
ansible_host: 127.16.0.1
router:
children:
junos:
ios:
@wate
wate / install_grafana.yml
Last active February 18, 2020 14:23
CentOS 7にGrafanaをインストールします
# ネタ元:https://wiki.infra-workshop.tech/%E5%8B%89%E5%BC%B7%E4%BC%9A%E3%83%AD%E3%82%B0/2018/07/03/Zabbix%26Grafana%E3%81%A7%E7%9B%A3%E8%A6%96%E3%82%92%E5%8F%AF%E8%A6%96%E5%8C%96%E3%81%97%E3%81%A6%E3%81%BF%E3%81%9F
- name: install grafana(CentOS 7 Only)
hosts: all
become: yes
vars:
grafana_plugins:
- alexanderzobnin-zabbix-app
tasks:
- name: add yum repository
yum_repository:
@wate
wate / syntax.md
Last active September 13, 2022 02:26
Markdownで行こう!

Markdownで行こう!

Markdownとは?

Markdownのルールで書かれたテキストはタグなど複雑な要素が用いられていないため
直感的に分かりやすく、HTMLに変換しないままでも配布することが可能です。
Markdownのルールは[Settext][]、[atx][]、[Textile][]、[reStructuredText][]、
[Grutatext][]、[EtTe][]といったテキスト文書をHTMLに変換するツールを参考にしています。