Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

usage guide and apiversion update for k8s v.1.14 #1

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
5 changes: 4 additions & 1 deletion Kubernetes ConfigMap.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ kind: ConfigMap
metadata:
name: ${1:name}
namespace: ${2:kube-system}
labels:
name: $1
data:
$3
${3:dataFile}: |-
$4
]]></content>
<tabTrigger>k8s:cm</tabTrigger>
<scope>source.yaml</scope>
Expand Down
21 changes: 11 additions & 10 deletions Kubernetes Daemonset.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
<snippet>
<content><![CDATA[
apiVersion: v1
apiVersion: apps/v1
kind: Daemonset
metadata:
namespace: ${1:default}
name: ${2:name}
name: ${1:name}
namespace: ${2:default}
labels:
app: $2
app: $1
spec:
template:
metadata:
namespace: ${1:default}
labels:
app: $2
app: $1
spec:
containers:
- name: ${2}
- name: ${1}
image: ${3:docker image}
resources:
limits:
cpu: 100m
memory: 200Mi
imagePullPolicy: ${4:Always} # Always|Never|IfNotPresent
#resources:
# limits:
# cpu: 100m
# memory: 200Mi
#env:
#- name: ENV_NAME
# value: ENV_VALUE
Expand Down
69 changes: 64 additions & 5 deletions Kubernetes Deployment.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,19 +1,78 @@
<snippet>
<content><![CDATA[
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
name: ${1:Enter deployment name}
namespace: ${2:default}
labels:
name: $1
spec:
replicas: ${2:Enter the number of replicas}
replicas: ${3:Enter the number of replicas}
strategy:
type: Recreate
selector:
matchLabels:
{{- include "jenkins.labels" . | nindent 6 }}
template:
metadata:
labels:
name: ${3:}
name: $1
spec:
containers:
- name: ${name}
image: ${Enter containers image}
- name: $1
image: ${4:Enter containers image}
imagePullPolicy: ${5:Always} # Always|Never|IfNotPresent
# command: string
# workingDir: string
# volumeMounts:
# - name: string
# mountPath: string
# readOnly: boolean
# ports:
# - name: string
# containerPort: Int
# hostPort: Int
# protocol: string # TCP|UDP
# livenessProbe:
# httpGet:
# path: /healthz
# port: 8080
# initialDelaySeconds: 3
# periodSeconds: 3
# env:
# - name: string
# value: string
# resources:
# requests:
# limits:
# cpu: string
# memory: string
# volumes:
# - name: string
# emptyDir: {}
# hostPath:
# path: string
#initContainers:
# - name: string
# image: string
# imagePullPolicy: string # Always|Never|IfNotPresent
# resources:
# requests:
# limits:
# cpu: string
# memory: string
#nodeSelector:
# string: string
#tolerations:
#- effect: string # NoSchedule|PreferNoSchedule|NoExecute
# key: string
# operator: Equal # Exists|Equal
# value: string
#securityContext:
# fsGroup: string
# runAsUser: string
# fsGroupChangePolicy: string # OnRootMismatch|Always
]]></content>
<tabTrigger>k8s:deploy</tabTrigger>
<scope>source.yaml</scope>
Expand Down
4 changes: 2 additions & 2 deletions Kubernetes HorizontalPodAutoScaler.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<snippet>
<content><![CDATA[
apiVersion: autoscaling/v1
apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
name: {1:name}
namespace: {2:default}
spec:
scaleTargetRef:
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
name: {3:target-name}
minReplicas: 1
Expand Down
23 changes: 14 additions & 9 deletions Kubernetes Ingress.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
<snippet>
<content><![CDATA[
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ${1}
namespace: ${2:default}
annotations:
#ingress.kubernetes.io/ssl-redirect: "false"
#kubernetes.io/ingress.class: string
spec:
${2:tls:
- secretName: ${3:secret}}
${3:tls:
- secretName: ${4:secret}}
rules:
- http:
paths:
- path: ${4:/}
backend:
serviceName: ${5:service}
servicePort: ${6:80}
- host: ${5:domain}
http:
paths:
- path: ${6:/}
pathType: ${7:Prefix} # ImplementationSpecific|Exact|Prefix
backend:
name: ${8:service}
port:
number: ${9:80}
]]></content>
<tabTrigger>k8s:ing</tabTrigger>
<scope>source.yaml</scope>
Expand Down
11 changes: 5 additions & 6 deletions Kubernetes Job.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,21 @@ apiVersion: batch/v1
kind: Job
metadata:
name: ${1:jobname}
labels:
${2:sometag: somevalue}
namespace: ${2:default}
spec:
template:
metadata:
name: $1
spec:
containers:
- name: ${3:containerName}
image: ${4: image}
imagePullPolicy: Always
- name: ${1}
image: ${3:docker image}
imagePullPolicy: ${4:Always} # Always|Never|IfNotPresent
command:
- ${5:"override"
- "--the"
- "entrypoint"}
restartPolicy: Never
restartPolicy: ${6:Never} # Never|OnFailure
]]></content>
<tabTrigger>k8s:job</tabTrigger>
<scope>source.yaml</scope>
Expand Down
79 changes: 41 additions & 38 deletions Kubernetes Pod.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -7,47 +7,50 @@ metadata:
namespace: ${2:default}
labels:
name: $1
annotations:
name: $1
spec:
containers:
- name: ${3:Enter container name}
image: ${4:Enter container image}
imagePullPolicy: ${5:Always} # Always|Nerver|IfNotPresent
# command: string
# workingDir: string
# volumeMounts:
# - name: string
# mountPath: string
# readOnly: boolean
# ports:
# - name: string
# containerPort: Int
# hostPort: Int
# protocol: string # TCP|UDP
# livenessProbe:
# httpGet:
# path: /healthz
# port: 8080
# initialDelaySeconds: 3
# periodSeconds: 3
# env:
# - name: string
# value: string
# resources:
# requests:
# limits:
# cpu: string
# memory: string
# volumes:
# - name: string
# emptyDir: {}
# hostPath:
# path: string
- name: $1
image: ${4:Enter containers image}
imagePullPolicy: ${5:Always} # Always|Never|IfNotPresent
# command: string
# workingDir: string
# volumeMounts:
# - name: string
# mountPath: string
# readOnly: boolean
# ports:
# - name: string
# containerPort: Int
# hostPort: Int
# protocol: string # TCP|UDP
# livenessProbe:
# httpGet:
# path: /healthz
# port: 8080
# initialDelaySeconds: 3
# periodSeconds: 3
# env:
# - name: string
# value: string
# resources:
# requests:
# limits:
# cpu: string
# memory: string
# volumes:
# - name: string
# emptyDir: {}
# hostPath:
# path: string
# nodeSelector:
# string: string
# tolerations:
# - effect: string # NoSchedule|PreferNoSchedule|NoExecute
# key: string
# operator: Equal # Exists|Equal
# value: string
dnsPolicy: Default # Default|ClusterFirst
restartPolicy: Always # Always|OnFailure
# nodeSeletor:
# name: string
restartPolicy: ${6:Never} # Never|OnFailure
# imagePullSecrets:
# name: string
]]></content>
Expand Down
4 changes: 2 additions & 2 deletions Kubernetes Role.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<snippet>
<content><![CDATA[
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
namespace: default
name: ${1:roleName}
namespace: ${2:default}
rules:
- apiGroups: [""]
resources: ["nodes"]
Expand Down
2 changes: 1 addition & 1 deletion Kubernetes RoleBinding.sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<content><![CDATA[
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: ${1:role-name}
Expand Down
4 changes: 2 additions & 2 deletions Kubernetes Secret.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ metadata:
name: ${1:secret name}
namespace: ${2:default}
data:
tls.crt: ${3:base64 encoded cert}
tls.key: ${4:base64 encoded key}
${3:someSecret: base64 encoded}
${4:someSecret: base64 encoded}
]]></content>
<tabTrigger>k8s:secret</tabTrigger>
<scope>source.yaml</scope>
Expand Down
2 changes: 0 additions & 2 deletions Kubernetes Service.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ metadata:
namespace: ${2:default}
labels:
name: $1
annotations:
name: $1
spec:
selector:
name: ${3:Enter app anme}
Expand Down
5 changes: 4 additions & 1 deletion Kubernetes ServiceAccount.sublime-snippet
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: ${1:name}
automountServiceAccountToken: false
namespace: ${2:default}
annotations:
#eks.amazonaws.com/role-arn: arn:aws:iam::111122223333:role/iam-role-name
#automountServiceAccountToken: false
]]></content>
<tabTrigger>k8s:sa</tabTrigger>
<scope>source.yaml</scope>
Expand Down
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
# Kubernetes Snippets for Sublime Text

# 如何使用
Kubernetes Snipperts is a package for [Sublime Text](https://www.sublimetext.com/) which helps you to create [Kubernetes](https://kubernetes.io/) templates easy and fast.

```bash
git clone https://github.com/songjiz/sublime-kubernetes-snippets
## How to enable the Kubernetes Snippets

Clone the repo and copy the files into ~/Library/Application\ Support/Sublime\ Text/Packages/User/ diretory.
```
$ git clone https://github.com/songjiz/sublime-kubernetes-snippets
$ cd sublime-kubernetes-snippets
$ cp Kubernetes* ~/Library/Application\ Support/Sublime\ Text/Packages/User/
```
拷贝sublime-kubernetes-snippets到Sublime Packages/User目录。

![Sublime User Packages](./browse_package.png)
## Using Snippets in Sublime Text

Create a file in Sublime Text with `yaml` extension. If you don't create the file with .yaml extension, you will not able to use snippets.
and start typing k8s to see the list of the snippets

![Sublime Kubernetes snippets](./sublime-text-snippet-usage.png)

If you select k8s:po Kubernetes Pod, you will get the Pod yaml

![Sublime Kubernetes snippets](./sublime-text-pod-snippet.png)
Binary file removed browse_package.png
Binary file not shown.
Binary file added sublime-text-pod-snippet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sublime-text-snippet-usage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.