Kustomize is a tool for customizing Kubernetes resources based on yaml manifests, and here is the solution for how to delete a resource with kustomize.
Tag: tutorial
Easy Cheat Sheet for Using the sed Command
Using the sed command to do quick string manipulation in a shell script can be very handy. These tips will make you an exper
Simplify Your Computer Backup Process
Since we never plan for a laptop to physically break, it is critical to consistently and routinely maintain a computer backup of what’s important.
Supercharge Your Makefile
A Makefile provides a simple entry point for any project for scripts and utilities. And there are a few tips I can offer to make yours more useful.
Cookies And Curl
Curl is the helpful shell command for HTTP requests, and typically I used them to testing a webservice. There are times where I need to send a cookie, and I always end up grepping for the last time I did it.
JDBI for Java 8 LocalDate and LocalDateTime
Java 8 introduced the superior LocalDate and LocalDateTime, but JDBI does not work so nicely with them. You’ll find errors like: In order to bind the parameters of a JDBI DAO for these Objects, you’ll need to implement your own Binder. Using the Binder And in usage, set the binder for the @Bind annotation. This […]
Hibernate within Dropwizard CLI Commands
Learn how to utilize Hibernate within Dropwizard, an extensible Java framework. This guide shows how to use it in CLI commands.
LDAP Authentication with Dropwizard
Authentication for your application may be crucial to its operation. Dropwizard provides a pretty clear description of different capabilities, but I thought I’d give a simple step-by-step implementation path. 1. Dependencies The good folks at yammer have provided this open source authenticator for Dropwizard specifically for LDAP. Add this to your pom: Please note, I’m […]
Browserify and ReactJS
Entering into using Browserify for the first time demands an answer to an important question — What is Browserify? Browserify simplifies dependencies management and usage of your Javascript application by utilizing commonJS import formats (require(‘modules’)) and bundling them with your app for deployment. It’s kind of funky to say, and yes several times I referenced […]
Request and Response Filters in Dropwizard
When constructing a Dropwizard application, there may be some pre-processing or post-processing you’d like to do on Resource methods. It’s fairly easy to add request and response filters in Dropwizard through the implementation of ContainerRequestFilter, ContainerResponseFilter, and ResourceFilterFactory, and adding them to the environment.