Skip to content

Instantly share code, notes, and snippets.

View nstankov-bg's full-sized avatar
🎯
Focusing

Nikolay Stankov nstankov-bg

🎯
Focusing
View GitHub Profile
# Source: https://gist.github.com/b8e3d6bc4b8ed6b31b816a8ca07735db
##################################################################
# Do NOT Use Docker Compose! Develop In Kubernetes (With Okteto) #
# https://youtu.be/RTo9Pvo_yiY #
##################################################################
# Additional Info:
# - Okteto: https://okteto.com
# - Zeet: https://go.zeet.co/devopstoolkit
#############################################################################################
# Creating Temporary Preview Environments Based On Pull Requests With Argo CD And Codefresh #
#############################################################################################
########################################
# Creating The Project And App Of Apps #
########################################
open https://github.com/vfarcic/argocd-previews
@bmorrical-ICC
bmorrical-ICC / README.md
Last active March 30, 2020 15:47
Upgrade OpenSSL From Source on CentOS/RHEL to Latest Version v1.1.1x

Install OpenSSL Latest Version On RHEL/CentOS

This walkthough will help you to install OpenSSL on RHEL or CentOS based environments.

Remove old packages

$ sudo yum remove openssl-devel
@lepffm
lepffm / cloudfront_invalidate_pipeline.groovy
Last active April 17, 2024 12:40
jenkins pipeline script for cloudfront invalidattion
// reference : https://stackoverflow.com/questions/56294317/how-to-programmatically-get-distribution-id-to-invalidate-cloudfront-cache
// prerequisite : aws cli, jq , aws credentials setting
pipeline {
parameters {
stringParam(description: 'your domain name', name: 'domain')
}
agent any
stages{
stage('init'){
steps{
@h0bbel
h0bbel / sources.list
Last active March 23, 2024 16:17
/etc/apt/sources.list for Ubuntu 18.04.1 LTS Bionic Beaver
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
@boneskull
boneskull / main.yml
Last active February 10, 2023 21:08
Node-RED Ansible role (Debian & derivatives)
---
# This task just includes everything else we need
- include_role:
# a task to install nodejs from Nodesource's distros
name: nodejs
- include_role:
# a task to install nginx
name: web
# everything below here is in this gist
- include: prerequisites.yml