Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

update azure-sdk-for-go to v19 #3608

Merged
merged 43 commits into from
Aug 3, 2018
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
3747e50
Refactoring to support azure-sdk-for-go 18.1.0
juan-lee Jul 25, 2018
ecacff4
Update azure-sdk-for-go to 19.0.0
juan-lee Jul 25, 2018
77a5bc8
generated files
juan-lee Jul 26, 2018
b0fc234
lint fixes
juan-lee Jul 26, 2018
9bb5e18
fixed another lint error
juan-lee Jul 26, 2018
7d53708
update resources to 2018-05-01
juan-lee Jul 29, 2018
a242b89
Make delete resource group sync
juan-lee Jul 31, 2018
cf7d677
Update azure-sdk-for-go to 19.0.0
juan-lee Jul 25, 2018
2b253a0
update resources to 2018-05-01
juan-lee Jul 29, 2018
4e2a2f5
Get sub from azure CLI when not provided (#3519)
cpuguy83 Jul 23, 2018
b72a12f
Installing vendored go-bindata binaries (#3527)
tariq1890 Jul 23, 2018
19f3e4d
Retire Swarm E2E for PR test coverage (#3539)
jackfrancis Jul 24, 2018
d1ca4a3
Refactoring to support azure-sdk-for-go 18.1.0
juan-lee Jul 25, 2018
1b57a6c
Update azure-sdk-for-go to 19.0.0
juan-lee Jul 25, 2018
f0e603f
--image-pull-policy=IfNotPresent for kubectl run commands (#3552)
jackfrancis Jul 25, 2018
a4dd4a9
revert --image-pull-policy=IfNotPresent for win (#3553)
jackfrancis Jul 25, 2018
43843f7
Document required manual calico 2.6.3 -> calico 3.1.1 upgrade when up…
oivindoh Jul 25, 2018
af0253b
Change dns healthcheck to look at external domain (#3282)
carlpett Jul 25, 2018
34c314f
Bump ginkgo to a tagged release (#3554)
carolynvs Jul 25, 2018
fa7075e
fix an issue where networkPlugin was not defined correctly when using…
dcasati Jul 25, 2018
cc97a74
generated files
juan-lee Jul 26, 2018
b3dea7a
update resources to 2018-05-01
juan-lee Jul 29, 2018
af8019a
Remove accidentally merged file
juan-lee Aug 1, 2018
5ae6f5e
Update azure-sdk-for-go to 19.0.0
juan-lee Jul 25, 2018
db6b109
update resources to 2018-05-01
juan-lee Jul 29, 2018
5bbcf3b
Refactoring to support azure-sdk-for-go 18.1.0
juan-lee Jul 25, 2018
9dabfc3
Update azure-sdk-for-go to 19.0.0
juan-lee Jul 25, 2018
53a7a8d
generated files
juan-lee Jul 26, 2018
4e760e7
update resources to 2018-05-01
juan-lee Jul 29, 2018
0a313ce
Retire Swarm E2E for PR test coverage (#3539)
jackfrancis Jul 24, 2018
01f5f77
Refactoring to support azure-sdk-for-go 18.1.0
juan-lee Jul 25, 2018
e23f08f
Update azure-sdk-for-go to 19.0.0
juan-lee Jul 25, 2018
e61af95
--image-pull-policy=IfNotPresent for kubectl run commands (#3552)
jackfrancis Jul 25, 2018
98b7b4e
revert --image-pull-policy=IfNotPresent for win (#3553)
jackfrancis Jul 25, 2018
26d5404
Document required manual calico 2.6.3 -> calico 3.1.1 upgrade when up…
oivindoh Jul 25, 2018
cf1aaac
fix an issue where networkPlugin was not defined correctly when using…
dcasati Jul 25, 2018
ec209db
generated files
juan-lee Jul 26, 2018
9cae331
update resources to 2018-05-01
juan-lee Jul 29, 2018
41fc8e7
make vendor
juan-lee Aug 1, 2018
9f6d0ef
make build-vendor
juan-lee Aug 1, 2018
4816120
dep ensure
jackfrancis Aug 3, 2018
db9d150
unnecessary file changes
jackfrancis Aug 3, 2018
975e78e
diff hygiene
jackfrancis Aug 3, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert --image-pull-policy=IfNotPresent for win (#3553)
jackfrancis committed Aug 3, 2018
commit 98b7b4ee120b4aa9248f439b01515877b79e432a
2 changes: 1 addition & 1 deletion test/e2e/kubernetes/deployment/deployment.go
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ func RunLinuxDeploy(image, name, namespace, command string, replicas int) (*Depl
// CreateWindowsDeploy will crete a deployment for a given image with a name in a namespace
func CreateWindowsDeploy(image, name, namespace string, port int, hostport int) (*Deployment, error) {
overrides := `{ "apiVersion": "extensions/v1beta1", "spec":{"template":{"spec": {"nodeSelector":{"beta.kubernetes.io/os":"windows"}}}}}`
cmd := exec.Command("kubectl", "run", name, "-n", namespace, "--image", "--image-pull-policy=IfNotPresent", image, "--port", strconv.Itoa(port), "--hostport", strconv.Itoa(hostport), "--overrides", overrides)
cmd := exec.Command("kubectl", "run", name, "-n", namespace, "--image", image, "--port", strconv.Itoa(port), "--hostport", strconv.Itoa(hostport), "--overrides", overrides)
out, err := util.RunAndLogCommand(cmd)
if err != nil {
log.Printf("Error trying to deploy %s [%s] in namespace %s:%s\n", name, image, namespace, string(out))