Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable stackdriver while grepping for packages #174

Merged
merged 1 commit into from Mar 3, 2021
Merged

Disable stackdriver while grepping for packages #174

merged 1 commit into from Mar 3, 2021

Conversation

hellozee
Copy link

@hellozee hellozee commented Mar 2, 2021

No description provided.

@@ -26,7 +26,7 @@ if [[ ${CLUSTER} == "eks" ]]; then
git apply tetrateci/patches/eks/eks-ingress.1.7.patch
fi

PACKAGES=$(go list ./tests/integration/... | grep -v /qualification | grep -v /examples | grep -v /multicluster)
PACKAGES=$(go list ./tests/integration/... | grep -v /qualification | grep -v /examples | grep -v /multicluster | grep -v /stackdriver)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-tags=integ -- is it not needed here?

Here and elsewhere can we use egrep instead? Something like
egrep -v '/qualification|/examples|/multicluster|/stackdriver'

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apparently the tag should be there but it was not added, I have proposed a PR to upstream istio, until then the tag would include a broken test (which I too fixed in that PR).

@deva26 deva26 merged commit 81c11b6 into tetratelabs:tetrate-workflow Mar 3, 2021
deva26 added a commit that referenced this pull request Mar 3, 2021
* Patch update (#70)

* disable endpointslice for 1.17 k8s in 1.9

* don't need to patch out multicluster since there are labels

* update the ingress patch

* the postsubmit flat takes care of the vmospost test

* pass in the clusterflags for the appropritate iop file

* retry 2 more times in case of failure

* add a message on failure and clean up tmp

* update the test script for 1.8 and 1.7

* disable ingress for 1.17 k8s in 1.9

* remove the multicluster patches

* post increment instead of preincrement

* disable fail fast and correct file name (#76)

* remove the test- prefix from tag while pushing test images (#83)

* Use appropriate go version according to the tag (#63)

* use appropriate go version according to tag

* removing fips comment from normal go

* setup normal go for the release scripts too

* update e2e workflow since go version differs by tag now

* move go versions into the script

* Increase the timeout and deal with hyphens in folder names (#82)

* add a patch to increase the timeout

* correct the path

* added better echo statements while testing

* gke channel change (#102)

* shebang fix (#109)

* Switch release builder branches for building releases (#108)

* use the specific build branch for the release builder

* use appropriate version for the branches too

* add ingress patch (#116)

* Upgrade machine types and count (#115)

* upgrade machine types

* add echo statements and remove count

* sudo with env (#129)

* imagepull policy (#136)

* update eks ingress patch for 1.8 (#135)

* skip the endpointslice package for 1.17 entirely (#147)

* change aks vm type (#153)

* Fix the workflow failures for 1.7.8 (#160)

* initial scripts for EKSD (#167)

* Prepare a version matrix for istio supported k8s versions (#66)

* rebase latest changes

* add a python script for version check

* reversing the condition

* add new versions for e2e tests

* disable stackdriver while grepping for packages (#174)

Co-authored-by: Kuntal Majumder <12135951+hellozee@users.noreply.github.com>
Co-authored-by: Devarajan P Ramaswamy <deva.ramaswamy@gmail.com>
deva26 added a commit that referenced this pull request Mar 4, 2021
* Patch update (#70)

* disable endpointslice for 1.17 k8s in 1.9

* don't need to patch out multicluster since there are labels

* update the ingress patch

* the postsubmit flat takes care of the vmospost test

* pass in the clusterflags for the appropritate iop file

* retry 2 more times in case of failure

* add a message on failure and clean up tmp

* update the test script for 1.8 and 1.7

* disable ingress for 1.17 k8s in 1.9

* remove the multicluster patches

* post increment instead of preincrement

* disable fail fast and correct file name (#76)

* remove the test- prefix from tag while pushing test images (#83)

* Use appropriate go version according to the tag (#63)

* use appropriate go version according to tag

* removing fips comment from normal go

* setup normal go for the release scripts too

* update e2e workflow since go version differs by tag now

* move go versions into the script

* Increase the timeout and deal with hyphens in folder names (#82)

* add a patch to increase the timeout

* correct the path

* added better echo statements while testing

* gke channel change (#102)

* shebang fix (#109)

* Switch release builder branches for building releases (#108)

* use the specific build branch for the release builder

* use appropriate version for the branches too

* add ingress patch (#116)

* Upgrade machine types and count (#115)

* upgrade machine types

* add echo statements and remove count

* sudo with env (#129)

* imagepull policy (#136)

* update eks ingress patch for 1.8 (#135)

* skip the endpointslice package for 1.17 entirely (#147)

* change aks vm type (#153)

* Fix the workflow failures for 1.7.8 (#160)

* initial scripts for EKSD (#167)

* Prepare a version matrix for istio supported k8s versions (#66)

* rebase latest changes

* add a python script for version check

* reversing the condition

* add new versions for e2e tests

* disable stackdriver while grepping for packages (#174)

* Release builder fixes for FIPS builds (#188)

* run the setup go scripts in the same shell

* use normal go for building binaries even for fips

* Fips distroless (#196)

* distroless base image change for pilot and operator

* refactor create release script

* nits

* nits

* merge fixes

Co-authored-by: Kuntal Majumder <12135951+hellozee@users.noreply.github.com>
deva26 added a commit that referenced this pull request Mar 4, 2021
* Patch update (#70)

* disable endpointslice for 1.17 k8s in 1.9

* don't need to patch out multicluster since there are labels

* update the ingress patch

* the postsubmit flat takes care of the vmospost test

* pass in the clusterflags for the appropritate iop file

* retry 2 more times in case of failure

* add a message on failure and clean up tmp

* update the test script for 1.8 and 1.7

* disable ingress for 1.17 k8s in 1.9

* remove the multicluster patches

* post increment instead of preincrement

* disable fail fast and correct file name (#76)

* remove the test- prefix from tag while pushing test images (#83)

* Use appropriate go version according to the tag (#63)

* use appropriate go version according to tag

* removing fips comment from normal go

* setup normal go for the release scripts too

* update e2e workflow since go version differs by tag now

* move go versions into the script

* Increase the timeout and deal with hyphens in folder names (#82)

* add a patch to increase the timeout

* correct the path

* added better echo statements while testing

* gke channel change (#102)

* shebang fix (#109)

* Switch release builder branches for building releases (#108)

* use the specific build branch for the release builder

* use appropriate version for the branches too

* add ingress patch (#116)

* Upgrade machine types and count (#115)

* upgrade machine types

* add echo statements and remove count

* sudo with env (#129)

* imagepull policy (#136)

* update eks ingress patch for 1.8 (#135)

* skip the endpointslice package for 1.17 entirely (#147)

* change aks vm type (#153)

* Fix the workflow failures for 1.7.8 (#160)

* initial scripts for EKSD (#167)

* Prepare a version matrix for istio supported k8s versions (#66)

* rebase latest changes

* add a python script for version check

* reversing the condition

* add new versions for e2e tests

* disable stackdriver while grepping for packages (#174)

* Release builder fixes for FIPS builds (#188)

* run the setup go scripts in the same shell

* use normal go for building binaries even for fips

* Fips distroless (#196)

* distroless base image change for pilot and operator

* refactor create release script

* nits

* nits

Co-authored-by: Kuntal Majumder <12135951+hellozee@users.noreply.github.com>
deva26 added a commit that referenced this pull request Mar 12, 2021
* disable fail fast and correct file name (#76)

* remove the test- prefix from tag while pushing test images (#83)

* Use appropriate go version according to the tag (#63)

* use appropriate go version according to tag

* removing fips comment from normal go

* setup normal go for the release scripts too

* update e2e workflow since go version differs by tag now

* move go versions into the script

* Increase the timeout and deal with hyphens in folder names (#82)

* add a patch to increase the timeout

* correct the path

* added better echo statements while testing

* gke channel change (#102)

* shebang fix (#109)

* Switch release builder branches for building releases (#108)

* use the specific build branch for the release builder

* use appropriate version for the branches too

* add ingress patch (#116)

* Upgrade machine types and count (#115)

* upgrade machine types

* add echo statements and remove count

* sudo with env (#129)

* imagepull policy (#136)

* update eks ingress patch for 1.8 (#135)

* skip the endpointslice package for 1.17 entirely (#147)

* change aks vm type (#153)

* Fix the workflow failures for 1.7.8 (#160)

* initial scripts for EKSD (#167)

* Prepare a version matrix for istio supported k8s versions (#66)

* rebase latest changes

* add a python script for version check

* reversing the condition

* add new versions for e2e tests

* disable stackdriver while grepping for packages (#174)

* Release builder fixes for FIPS builds (#188)

* run the setup go scripts in the same shell

* use normal go for building binaries even for fips

* Fips distroless (#196)

* distroless base image change for pilot and operator

* refactor create release script

* nits

* nits

* add a default for make release workflow (#204)

* Add an echo for the go version of the binary (#195)

* add an echo for the go version of the binary

* more checks for the golang version

* chagne the variable names

* adjusted the variable names

* Disable tests if the k8s version is not supported (#206)

* disable tests if the k8s version is not supported

* change the varible names to something more accurate

* change the variable name used to decide the script

* Add the eksd tests job (#181)

* add the eksd tests job

* no need to clone the repo again

* added basedir to eksd cluster scripts

* make versions consistent across the jobs

* add eks tests as dependency of eksd tests

* use better variable names

* fix the merge errors

* Generate manifest yamls using python script (#213)

* generate the release builder manifests with the help of python

* point that both yamls are generated with a single script

* put the fips go check under an if clause (#242)

Co-authored-by: Kuntal Majumder <12135951+hellozee@users.noreply.github.com>
deva26 added a commit that referenced this pull request Mar 15, 2021
* disable fail fast and correct file name (#76)

* remove the test- prefix from tag while pushing test images (#83)

* Use appropriate go version according to the tag (#63)

* use appropriate go version according to tag

* removing fips comment from normal go

* setup normal go for the release scripts too

* update e2e workflow since go version differs by tag now

* move go versions into the script

* Increase the timeout and deal with hyphens in folder names (#82)

* add a patch to increase the timeout

* correct the path

* added better echo statements while testing

* gke channel change (#102)

* shebang fix (#109)

* Switch release builder branches for building releases (#108)

* use the specific build branch for the release builder

* use appropriate version for the branches too

* add ingress patch (#116)

* Upgrade machine types and count (#115)

* upgrade machine types

* add echo statements and remove count

* sudo with env (#129)

* imagepull policy (#136)

* update eks ingress patch for 1.8 (#135)

* skip the endpointslice package for 1.17 entirely (#147)

* change aks vm type (#153)

* Fix the workflow failures for 1.7.8 (#160)

* initial scripts for EKSD (#167)

* Prepare a version matrix for istio supported k8s versions (#66)

* rebase latest changes

* add a python script for version check

* reversing the condition

* add new versions for e2e tests

* disable stackdriver while grepping for packages (#174)

* Release builder fixes for FIPS builds (#188)

* run the setup go scripts in the same shell

* use normal go for building binaries even for fips

* Fips distroless (#196)

* distroless base image change for pilot and operator

* refactor create release script

* nits

* nits

* add a default for make release workflow (#204)

* Add an echo for the go version of the binary (#195)

* add an echo for the go version of the binary

* more checks for the golang version

* chagne the variable names

* adjusted the variable names

* Disable tests if the k8s version is not supported (#206)

* disable tests if the k8s version is not supported

* change the varible names to something more accurate

* change the variable name used to decide the script

* Add the eksd tests job (#181)

* add the eksd tests job

* no need to clone the repo again

* added basedir to eksd cluster scripts

* make versions consistent across the jobs

* add eks tests as dependency of eksd tests

* use better variable names

* fix the merge errors

* Generate manifest yamls using python script (#213)

* generate the release builder manifests with the help of python

* point that both yamls are generated with a single script

* put the fips go check under an if clause (#242)

* update the python script to gen the manifest (#250)

Co-authored-by: Kuntal Majumder <12135951+hellozee@users.noreply.github.com>
su225 pushed a commit that referenced this pull request Jul 16, 2021
Signed-off-by: Yaroslav Skopets <yaroslav@tetrate.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants