This file contains hidden or 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
| git clone [email protected]:kubernetes/minikube.git | |
| git remote rename origin upstream | |
| git remote set-url --push upstream NO_PUSH |
This file contains hidden or 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
| https://storage.googleapis.com/minikube/iso/minikube-v1.12.0-beta.1.iso |
This file contains hidden or 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
| Started by upstream project "Build_Cross" build number 12926 | |
| originally caused by: | |
| Started by timer | |
| Started by user Medya Ghazizadeh | |
| Rebuilds build #10879 | |
| Running as SYSTEM | |
| [EnvInject] - Loading node environment variables. | |
| [EnvInject] - Preparing an environment for the build. | |
| [EnvInject] - Keeping Jenkins system variables. | |
| [EnvInject] - Keeping Jenkins build variables. |
This file contains hidden or 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
| ./out/minikube start --driver=docker && ./out/minikube addons enable ingress | |
| Create example-ingress.yaml from the following file: | |
| ``` | |
| apiVersion: networking.k8s.io/v1beta1 # for versions before 1.14 use extensions/v1beta1 | |
| kind: Ingress | |
| metadata: | |
| name: example-ingress | |
| annotations: | |
| nginx.ingress.kubernetes.io/rewrite-target: /$1 |
This file contains hidden or 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
| node['cccis-weblogic']['ccc_directories'].each do |d| | |
| directory d["directory_path"] do | |
| owner d["owner"] | |
| group d["group"] | |
| recursive true | |
| mode '0755' | |
| action :create | |
| end | |
| end |