Skip to content

Instantly share code, notes, and snippets.

View gprasanthkumar's full-sized avatar

Prasanth Guddanti gprasanthkumar

  • Santiago, Chile
View GitHub Profile
@gprasanthkumar
gprasanthkumar / ckad-learning.md
Created November 15, 2021 05:36 — forked from benc-uk/ckad-learning.md
Certified Kubernetes Application Developer (CKAD)
1. Setup a project
2. Add groovy SDK support:
https://www.bonusbits.com/wiki/HowTo:Add_Groovy_SDK_to_IntelliJ_IDEA
3. Download http://(yourjenkinsurl)/job/(yourpipelinejob)/pipeline-syntax/gdsl
- this will give you the .gdsl file - download this to the src folder of your project.
4. Finally follow this step - right click on the src folder -> Mark directory as -> Sources Root
@gprasanthkumar
gprasanthkumar / keytool.rb
Created March 5, 2019 20:18 — forked from lusis/keytool.rb
recipe for adding certs to keytool
keystore = "/etc/java-6-sun/security/cacerts"
keystore_pass = "foobar"
# you'll need foo.cert et. al. in files/default
certs = %w{foo bar bang}
certs.each do |cert|
cookbook_file "#{Chef::Config[:file_cache_path]}/#{cert}.cert" do
source "#{cert}.cert"
end