The CFSSL README is really good. Here's some additional notes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# This playbook queries Kubernetes to find a pod within a playbook and then | |
# runs a commnad within one of those pods. This is essentially the Ansible | |
# way to perform the following kubectl command: | |
# | |
# kubectl exec -n keycloak deploy/postgres -- psql -U postgres -c '\l' | |
# | |
- hosts: localhost | |
tasks: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/csv" | |
"encoding/json" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
net.bridge.bridge-nf-call-ip6tables = 1 | |
net.bridge.bridge-nf-call-iptables = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using k8s; | |
using k8s.Models; | |
namespace k8s_job_launcher | |
{ | |
class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:buster AS oggzit-build | |
WORKDIR /go/src/oggzit | |
COPY . . | |
RUN go install -v ./... | |
FROM debian:buster AS oggz-install | |
WORKDIR /root | |
RUN apt-get update && apt-get install -y \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using Confluent.Kafka; | |
namespace my_producer | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
PKCS12 is combination of certificate and key
Code signing certificates vs SSL certificates: https://stackoverflow.com/questions/9527972/ssl-certificate-same-as-signing-certificate
NewerOlder