Skip to content

Instantly share code, notes, and snippets.

View mkoertgen's full-sized avatar
💭
Mostly working on DevOps stuff (#azuredevops, #k8s)

Marcel Körtgen mkoertgen

💭
Mostly working on DevOps stuff (#azuredevops, #k8s)
View GitHub Profile
@mkoertgen
mkoertgen / pulsar-manager-set-super-user.yaml
Created February 19, 2022 12:01
Pulsar-Manager in k8s: Initialize super user
apiVersion: batch/v1
kind: Job
metadata:
name: "pulsar-manager-set-super-user"
namespace: "pulsar"
spec:
# https://kubernetes.io/docs/concepts/workloads/controllers/job/
backoffLimit: 0
ttlSecondsAfterFinished: 100
template:
@mkoertgen
mkoertgen / Update-AUPackages.md
Created August 27, 2022 14:26
Update-AUPackages.md
@mkoertgen
mkoertgen / batch-merge-prs.md
Last active May 31, 2024 19:05
Accept all dependabot pull requests using GitHub CLI
@mkoertgen
mkoertgen / README.md
Created December 16, 2023 11:25
Skip SSL Host verification with ElasticSearch Client

Skip SSL Host verification with ElasticSearch Client

When enabling ElasticSearch to use https for inter-component communication, it uses self-signed certs by default. These certs are generated by the eck-operator itself.

In case infrastructure and management processes for self-signed certs and truststore generation is not an option for you, disabling certificate verification seems to be an easy solution to the missing cert management part.

import org.springframework.boot.context.properties.ConfigurationProperties
@mkoertgen
mkoertgen / README.md
Last active June 28, 2024 15:32
Gource automation

Gource Automation

Watch the video

Example for rendering a Gource video from a Git repository between two dates corresponding to two tags:

# List tag dates in ISO format
$ git for-each-ref --format="%(refname:short) | %(creatordate:iso)" "refs/tags/*"
...