Skip to content

Instantly share code, notes, and snippets.

View ildarusmanov's full-sized avatar
🎯
Focusing

Ildar ildarusmanov

🎯
Focusing
View GitHub Profile
package resource
import (
"encoding/base64"
"fmt"
"io"
"io/ioutil"
"net/url"
"os"
"os/exec"
// From sources for https://watermill.io/docs/getting-started/
package main
import (
"context"
"log"
"time"
"github.com/ThreeDotsLabs/watermill"
"github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp"
@ildarusmanov
ildarusmanov / main.go
Created June 19, 2023 12:26
Generate self-signed certificates for k8s DAC WebHooks
package main
import (
"bytes"
"crypto/rand"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"encoding/base64"