File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,7 @@ verify the tokens.
60
60
# when creating service account for the gateway proxy.
61
61
kubectl create -f deploy/namespace.yaml
62
62
kubectl create -f deploy/sa.yaml
63
- ```
64
63
65
- ``` bash
66
64
# Generate public and private keys (the gateway supports RSA Signature with SHA-256)
67
65
openssl genrsa -out tls.key
68
66
openssl req -new -x509 -sha256 -key tls.key -out tls.crt -days 3650 -subj " /C=/ST=/L=/O=/OU=/CN=/emailAddress="
@@ -125,7 +123,7 @@ In this example we will use the default noVNC web application
125
123
# The example noVNC application requirs kubevirt to be installed,
126
124
# on minikube install kubevirt using minikube addons, on other platforms install
127
125
# as recomended for that platform.
128
- minikube addons enable kubevirt
126
+ # minikube addons enable kubevirt
129
127
130
128
# Wait for kubevirt to finish install and then
131
129
# start the example virtual machine
Original file line number Diff line number Diff line change 2
2
apiVersion : v1
3
3
kind : Service
4
4
metadata :
5
+ annotations :
6
+ service.alpha.openshift.io/serving-cert-secret-name : kube-gateway-secrets
5
7
labels :
6
8
app : kube-gateway
7
9
name : kube-gateway-svc
Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : route.openshift.io/v1
3
+ kind : Route
4
+ metadata :
5
+ labels :
6
+ app : kube-gateway
7
+ name : kube-gateway-route
8
+ namespace : kube-gateway
9
+ spec :
10
+ host : kube-gateway.apps.ironmaiden1.eng.lab.tlv.redhat.com
11
+ port :
12
+ targetPort : 8080
13
+ tls :
14
+ termination : reencrypt
15
+ to :
16
+ kind : Service
17
+ name : kube-gateway-svc
18
+ weight : 100
19
+ wildcardPolicy : None
You can’t perform that action at this time.
0 commit comments