minikube version
minikube start
kubectl version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MovieController { | |
@RequestMapping(value = "/", method = RequestMethod.GET) | |
public String searchMovie(ModelMap model) { | |
String movieName="" | |
model.addAttribute("movieName", ""); | |
return "search"; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"github.com/ajstarks/svgo" | |
"os" | |
) | |
func main() { | |
width := 1920 |
I hereby claim:
- I am tariq1890 on github.
- I am tariq1890 (https://keybase.io/tariq1890) on keybase.
- I have a public key ASDVgph9_f9uMcfQCh28ch71Bq_mOtZhQbpdFj5o1swV9wo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run this script if you want to install essential k8s productivity tools. | |
# This script has been tested on both macOS and Linux | |
# | |
# Please ensure you have done the following before executing this script | |
# i) Make the script executable: chmod +x <script-name>.sh | |
# ii) Run the script as root. sudo sh <script-name>.sh OR sudo ./<script-name>.sh | |
# | |
# Suggestions for improvements are always welcome! |