Skip to content

Instantly share code, notes, and snippets.

View vijay2213's full-sized avatar
:octocat:
Available

Vijay Surisetti vijay2213

:octocat:
Available
  • Singapore
  • 13:13 (UTC +08:00)
View GitHub Profile
@vijay2213
vijay2213 / k3s_helm_install.sh
Created March 14, 2022 03:19 — forked from icebob/k3s_helm_install.sh
K3S + Helm installing
# Install K3S
curl -sfL https://get.k3s.io | sh -
# Copy k3s config
mkdir $HOME/.kube
sudo cp /etc/rancher/k3s/k3s.yaml $HOME/.kube/config
sudo chmod 644 $HOME/.kube/config
# Check K3S
kubectl get pods -n kube-system
@vijay2213
vijay2213 / test.html
Created January 23, 2019 03:55
Hello World Html
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
@vijay2213
vijay2213 / test.md
Created January 23, 2019 03:54
Hello World Markdown

Hello World

This is content converted from Markdown!

Here's a JSON sample:

{
  "foo": "bar"
}