forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove 4621 from quarantine by switching kubectl port-forward->NodePort
Our functional tests are using `kubectl port-forward` to upload the images, which is not very reliable. Since kubevirt/kubevirtci#653, we have a port that is exposed from host->VM; We can look it up and set up a NodePort against it instead. Signed-off-by: Alex Kalenyuk <[email protected]>
- Loading branch information
Showing
3 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: cdi-uploadproxy-nodeport | ||
namespace: {{.CDINamespace}} | ||
labels: | ||
kubevirt.io: "cdi-uploadproxy-nodeport" | ||
spec: | ||
type: NodePort | ||
selector: | ||
cdi.kubevirt.io: cdi-uploadproxy | ||
ports: | ||
- port: 443 | ||
targetPort: 8443 | ||
nodePort: 31001 |
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