Skip to content

Instantly share code, notes, and snippets.

View zerda's full-sized avatar

SilverFox zerda

  • Shanghai, China
View GitHub Profile
@zerda
zerda / .gitlab-ci.yml
Last active April 17, 2024 19:35
Gitlab CI for front-end project
image: node:6-alpine
cache:
key: "$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME"
paths:
- node_modules/
- yarn_cache/
stages:
- setup
@zerda
zerda / .gitlab-ci.yml
Last active August 8, 2023 07:52
Gitlab CI for ASP.Net Core project
stages:
- build
- publish
.build: &build_template
stage: build
image: microsoft/dotnet:2.1-sdk-alpine
cache:
key: "$CI_PROJECT_NAMESPACE-$CI_PROJECT_NAME"
paths:
@zerda
zerda / DisableFiddlerUpdateCheck.reg
Created July 27, 2016 06:56
Disable Fiddler Auto Check for Update
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fiddler2]
"BlockUpdateCheck"="True"
@zerda
zerda / Program.cs
Created July 30, 2019 16:25
Convert an RSA to JsonWebKey format
// nuget package reference with:
// - System.IdentityModel.Tokens.Jwt
using System;
using System.Security.Cryptography;
using Newtonsoft.Json;
using Microsoft.IdentityModel.Tokens;
static void Main(string[] args) {
var provider = new RSACryptoServiceProvider(2048);
var key = new RsaSecurityKey(provider.ExportParameters(true));
@zerda
zerda / elasticsearch.yaml
Created April 8, 2017 21:42
ELK in Kubernetes
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: elasticsearch-logging
namespace: kube-system
labels:
k8s-app: elasticsearch-logging
spec:
replicas: 1
template:
@zerda
zerda / ami-clean.sh
Last active April 16, 2021 08:53 — forked from jdowning/ami-clean.sh
Script to clean up Ubuntu EC2 instance before packaging as an AMI
#!/bin/bash
# This script cleans up your EC2 instance before baking a new AMI.
# Run the following command in a root shell:
#
# wget -qO- https://gist.github.com/zerda/677b279f2b8888ed92c4c614790fe232/raw/ami-clean.sh | bash
function print_green {
echo -e "\e[32m${1}\e[0m"
}
@zerda
zerda / Dockerfile
Created April 12, 2017 09:11
Merge environment variables to Docker container files
FROM nginx:alpine
EXPOSE 80
RUN apk add --update --no-cache jq
ADD ./docker-entrypoint.sh /
ADD ./config.json ./index.html /usr/share/nginx/html/
ENV CONFIG_PATH=/usr/share/nginx/html/config.json
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]
@zerda
zerda / .gitlab-ci.yml
Last active October 8, 2020 04:05
Gitlab CI for spring boot project
image: maven:3.3-jdk-8-alpine
cache:
key: "$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME"
paths:
- .m2/
variables:
MAVEN_OPTS: "-Dmaven.repo.local=.m2"
@zerda
zerda / kube-flannel.yml
Created October 31, 2018 21:44
Use aliyun registry instead of quay.io
# Copied from https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: flannel
rules:
- apiGroups:
- ""
@zerda
zerda / backup-job.yml
Last active October 6, 2018 23:57
Backup etcd in Kubernetes
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: backup
namespace: kube-system
spec:
# activeDeadlineSeconds: 100
schedule: "0 */1 * * *"
jobTemplate:
spec: