Skip to content

Instantly share code, notes, and snippets.

View mrnonz's full-sized avatar
🎯
Focusing

Nontawat Numor mrnonz

🎯
Focusing
View GitHub Profile
@mrnonz
mrnonz / rke2-commands.md
Created March 28, 2024 04:37 — forked from superseb/rke2-commands.md
RKE2 commands

RKE2 commands

Install

curl -sL https://get.rke2.io | sh
systemctl daemon-reload
systemctl start rke2-server
@mrnonz
mrnonz / README.md
Last active May 19, 2021 09:47 — forked from m1keil/README.md
Configure Kibana to use SAML with GSuite (Google Apps, GApps, G Suite)

The following worked with Elastic Cloud, Elasticsearch & Kibana v7.6.0. It should be pretty close for other kinds of deployments. Before starting, make sure you have the right license level that allows SAML.

Create SAML App in GSuite:

  • Navigate to the SAML apps section of the admin console
  • Click the Add button and choose to "SETUP MY OWN CUSTOM APP"
  • Write down the Entity ID and download the Idp metadata file
  • Choose application name, description and add logo
  • In the "Service Provider Details" screen add the following:
@mrnonz
mrnonz / Jenkinsfile
Created February 15, 2020 10:01 — forked from merikan/Jenkinsfile
Some Jenkinsfile examples
Some Jenkinsfile examples
@mrnonz
mrnonz / docker-compose.yml
Created April 28, 2018 09:22 — forked from winggundamth/docker-compose.yml
Elasticsearch Cluster + Grafana Docker Compose File
version: '3'
services:
es1:
image: docker.elastic.co/elasticsearch/elasticsearch:6.2.4
container_name: es1
environment:
cluster.name: "docker-cluster"
bootstrap.memory_lock: "true"
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
TAKE_FILE_OWNERSHIP: "true"