ARAndi Radulescuinandiradulescu.hashnode.dev·Feb 27, 2025 · 1 min readDump all elasticsearch (or opensearch) with one copy and paste# install node first https://andiradulescu.hashnode.dev/install-latest-node-with-one-copy-and-paste # install multielasticdump npm install elasticdump -g SOURCE=https://user:password@IP:PORT # MUST be a URL for the base location of an ElasticSearch s...00
ARAndi Radulescuinandiradulescu.hashnode.dev·Feb 27, 2025 · 1 min readInstall latest node with one copy and pastecurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This ...00
ARAndi Radulescuinandiradulescu.hashnode.dev·Feb 27, 2025 · 1 min readCompress and cleanup a git repositorygit reflog expire --expire=now --all git gc --auto --aggressive --prune=now From nvm/install.sh00
ARAndi Radulescuinandiradulescu.hashnode.dev·Feb 11, 2025 · 4 min readDynamic Helm Charts in GitLab CIWhen deploying applications to Kubernetes, managing Helm charts across multiple repositories can become a maintenance burden. Today, I'll share an elegant solution I've implemented that generates Helm charts on the fly during CI/CD pipelines using He...00