Skip to content

Demo test update + Docker file creation for Hop App #172

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

Merged
merged 13 commits into from
May 1, 2017

Conversation

sebastienvas
Copy link
Contributor

No description provided.

@sebastienvas sebastienvas requested a review from yutongz May 1, 2017 04:11
@istio-testing
Copy link
Collaborator

Jenkins job istio/presubmit passed

// GetResourcePath give "path from WORKSPACE", return absolute path at runtime
func GetResourcePath(p string) string {
if dir, exists := os.LookupEnv(testSrcDir); exists {
return filepath.Join(dir, filepath.Join("workspace", p))
Copy link
Contributor

Choose a reason for hiding this comment

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

We can use filepath.Join(dir, "workspace", p)

MixerImage: fmt.Sprintf("%s/mixer:%s", *mixerHub, *mixerTag),
ManagerImage: fmt.Sprintf("%s/manager:%s", *managerHub, *managerTag),
CaImage: fmt.Sprintf("%s/ca:%s", *caHub, *caTag),
ProxyImage: fmt.Sprintf("%s/proxy:%s", *managerHub, *managerTag),
Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe add a comment here explain why we are giving manager hub/tag to proxy, i.e. manager and proxy always share the same.

break
default:
break
}
}
sh("tests/kubeTest.sh ${kubeTestArgs}")
sh("tests/e2e.sh ${e2eArgs}")
Copy link
Contributor

Choose a reason for hiding this comment

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

They changed something in manager as well as demo test, such that our go version of demo test is not compatible with new prs right now, I am fixing it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Will fix in a later PR once I merge from master

@yutongz
Copy link
Contributor

yutongz commented May 1, 2017

PTAL

@istio-testing
Copy link
Collaborator

Jenkins job istio/presubmit passed

Copy link
Contributor Author

@sebastienvas sebastienvas left a comment

Choose a reason for hiding this comment

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

PTAL

Copy link
Contributor

@yutongz yutongz left a comment

Choose a reason for hiding this comment

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

Small change

tests/e2e.sh Outdated
SUMMARY='Tests Summary'

for T in ${TESTS_TARGETS[@]}; do
bazel ${BAZEL_STARTUP_ARGS} run ${BAZEL_RUN_ARGS} ${T} -- ${ARGS} ${@}
Copy link
Contributor

Choose a reason for hiding this comment

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

I think it would be helpful to print a block with the test name, making it clear when we are going to have 20 tests

Copy link
Contributor

@yutongz yutongz left a comment

Choose a reason for hiding this comment

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

It's awesome!

@istio-testing
Copy link
Collaborator

Jenkins job istio/presubmit passed

@sebastienvas sebastienvas merged commit 4396651 into istio:e2e May 1, 2017
@sebastienvas sebastienvas deleted the e2e branch May 1, 2017 23:34
sebastienvas added a commit that referenced this pull request May 4, 2017
* Initial version

* Refactor for better testing

* Update framework for testing and added test

* Bazelify istio

* Simplified interfaces

* Refactor code to use Cleanable interface

* go formating (#140)

* go formating

* Updated Jenkinsfile to run tests

* Separate TestInfo to another module (#144)

* Separete TestInfo to another module

Implemented status file creation
Implemented log upload to cloud storage
Rename SetUp to Setup and TearDown to Teardown

* Add more info in TestStatus

* Rename InitLogging to InitGlog

* Resolving comments

* Return skipDir error on err

* Adding Code Checks + Fix them (#151)

* Not uploading logs_bucket_path flag is unset

* Added code checks

* Fix linter errors

* Update Jenkins to use a goBuildNode

* e2e test: Create namespace and deploy istio core and test app (#145)

* Create namespace and deploy namespace

* Get runtime source path

* Correct pr comments, add GetGateWay()

* Add default route test

* Add version routing tests, fix linter and fix comments on pr

* Add fault delay test and fix comments

* Add version migration test

* Add Hop App + testing (#162)

* Implemented echo App

* Adding test + refactoring

* Added more tests

* Resolved review comments

* Use slices instead of pointers to slices

* Fix formatting

* Merge master to e2e (#165)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Small doc updates. (#163)

* Demo test update + Docker file creation for Hop App (#172)

* Renamed default env const

* Added support for server update for version

* Added a binary for Hop + Docker Image

* WIP

* Modified kubernetes setup + demo test

* Fixed Jenkinsfile

* Fix comments

* Fix format

* Removing app_flag as set directly in template

* Fixed resp.close() was called on empty resp

* Moved test to their own folder

* Fixes e2e.sh

* Make e2e.sh more verbose

* Merge from istio:master, change install source to istio-install and setup istioctl (#175)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Separate Istio CA installation from default.

Istio CA should not be installed by default.

Created istio-cluster-ca.yaml and istio-namespace-ca.yaml for deploying the
per-cluster and per-namespace CAs, so that users do not need to modify the files
for different use cases.

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Fix Istio CA files to create namespace.

* Update one-off auth yaml files.

* Small doc updates. (#163)

* Improve Istio one-off yaml files for Istio auth.

* Fix links.

* Up the blanked rl to 5000, so it does not interfere with tests (#167)

* Rename istio-ingress-controller to istio-ingress

* Changed labels for ingress and ingress

* update to rule schema to reflect switch from double to duration (#168)

* update to rule schema to reflect switch from double to duration
* pointed to my dockerhub
* Updating istio version

* Regenerate

* Change in scripts

* Install istio from istio-install, add os x support and add setupIstioctl

* fix lineter

* Get rule files from demos/apps, istioctl cleanable and comments fix

* small change

* appManager cleanablization

* Merge master to e2e (#181)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Separate Istio CA installation from default.

Istio CA should not be installed by default.

Created istio-cluster-ca.yaml and istio-namespace-ca.yaml for deploying the
per-cluster and per-namespace CAs, so that users do not need to modify the files
for different use cases.

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Fix Istio CA files to create namespace.

* Update one-off auth yaml files.

* Small doc updates. (#163)

* Improve Istio one-off yaml files for Istio auth.

* Fix links.

* Up the blanked rl to 5000, so it does not interfere with tests (#167)

* Rename istio-ingress-controller to istio-ingress

* Changed labels for ingress and ingress

* update to rule schema to reflect switch from double to duration (#168)

* update to rule schema to reflect switch from double to duration
* pointed to my dockerhub
* Updating istio version

* Regenerate

* Change in scripts

* update to gcr.io/istio-testing versions (#170)

1. Update mixer, manager, proxy versions to include rate limit fixes
2. Remove mixer configmap. The default config is now baked inside mixer.
3. expose mixer metrics and configapi ports thru port forwarding.
4. Add "wrk" for testing. drive traffic and fetch metrics as a setup for full
5. ratelimit integration test. That PR will follow.

* Add ingress service for correct status IP

* Support for istio-ca in tests/updateVersion.sh (#180)

* Update updateVersion.sh to take into account istio-ca

* Updates with updateVersion.sh

* Create README.md for e2e test framework (#182)

* Create README.md for e2e test framework

* small change
mandarjog pushed a commit to mandarjog/istio that referenced this pull request Oct 30, 2017
This PR establishes an access logging aspect (as distinct from the generic logger aspect) for use by Istio. This aspect will be used to generate access logs (think [Common Log Format](https://en.wikipedia.org/wiki/Common_Log_Format)).

Former-commit-id: 4309756c55d400fab402446eed06f29efc7d412f
rshriram pushed a commit that referenced this pull request Oct 30, 2017
* Initial version

* Refactor for better testing

* Update framework for testing and added test

* Bazelify istio

* Simplified interfaces

* Refactor code to use Cleanable interface

* go formating (#140)

* go formating

* Updated Jenkinsfile to run tests

* Separate TestInfo to another module (#144)

* Separete TestInfo to another module

Implemented status file creation
Implemented log upload to cloud storage
Rename SetUp to Setup and TearDown to Teardown

* Add more info in TestStatus

* Rename InitLogging to InitGlog

* Resolving comments

* Return skipDir error on err

* Adding Code Checks + Fix them (#151)

* Not uploading logs_bucket_path flag is unset

* Added code checks

* Fix linter errors

* Update Jenkins to use a goBuildNode

* e2e test: Create namespace and deploy istio core and test app (#145)

* Create namespace and deploy namespace

* Get runtime source path

* Correct pr comments, add GetGateWay()

* Add default route test

* Add version routing tests, fix linter and fix comments on pr

* Add fault delay test and fix comments

* Add version migration test

* Add Hop App + testing (#162)

* Implemented echo App

* Adding test + refactoring

* Added more tests

* Resolved review comments

* Use slices instead of pointers to slices

* Fix formatting

* Merge master to e2e (#165)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Small doc updates. (#163)

* Demo test update + Docker file creation for Hop App (#172)

* Renamed default env const

* Added support for server update for version

* Added a binary for Hop + Docker Image

* WIP

* Modified kubernetes setup + demo test

* Fixed Jenkinsfile

* Fix comments

* Fix format

* Removing app_flag as set directly in template

* Fixed resp.close() was called on empty resp

* Moved test to their own folder

* Fixes e2e.sh

* Make e2e.sh more verbose

* Merge from istio:master, change install source to istio-install and setup istioctl (#175)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Separate Istio CA installation from default.

Istio CA should not be installed by default.

Created istio-cluster-ca.yaml and istio-namespace-ca.yaml for deploying the
per-cluster and per-namespace CAs, so that users do not need to modify the files
for different use cases.

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Fix Istio CA files to create namespace.

* Update one-off auth yaml files.

* Small doc updates. (#163)

* Improve Istio one-off yaml files for Istio auth.

* Fix links.

* Up the blanked rl to 5000, so it does not interfere with tests (#167)

* Rename istio-ingress-controller to istio-ingress

* Changed labels for ingress and ingress

* update to rule schema to reflect switch from double to duration (#168)

* update to rule schema to reflect switch from double to duration
* pointed to my dockerhub
* Updating istio version

* Regenerate

* Change in scripts

* Install istio from istio-install, add os x support and add setupIstioctl

* fix lineter

* Get rule files from demos/apps, istioctl cleanable and comments fix

* small change

* appManager cleanablization

* Merge master to e2e (#181)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Separate Istio CA installation from default.

Istio CA should not be installed by default.

Created istio-cluster-ca.yaml and istio-namespace-ca.yaml for deploying the
per-cluster and per-namespace CAs, so that users do not need to modify the files
for different use cases.

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Fix Istio CA files to create namespace.

* Update one-off auth yaml files.

* Small doc updates. (#163)

* Improve Istio one-off yaml files for Istio auth.

* Fix links.

* Up the blanked rl to 5000, so it does not interfere with tests (#167)

* Rename istio-ingress-controller to istio-ingress

* Changed labels for ingress and ingress

* update to rule schema to reflect switch from double to duration (#168)

* update to rule schema to reflect switch from double to duration
* pointed to my dockerhub
* Updating istio version

* Regenerate

* Change in scripts

* update to gcr.io/istio-testing versions (#170)

1. Update mixer, manager, proxy versions to include rate limit fixes
2. Remove mixer configmap. The default config is now baked inside mixer.
3. expose mixer metrics and configapi ports thru port forwarding.
4. Add "wrk" for testing. drive traffic and fetch metrics as a setup for full
5. ratelimit integration test. That PR will follow.

* Add ingress service for correct status IP

* Support for istio-ca in tests/updateVersion.sh (#180)

* Update updateVersion.sh to take into account istio-ca

* Updates with updateVersion.sh

* Create README.md for e2e test framework (#182)

* Create README.md for e2e test framework

* small change

Former-commit-id: 0adf4c4
mandarjog pushed a commit that referenced this pull request Oct 31, 2017
This PR establishes an access logging aspect (as distinct from the generic logger aspect) for use by Istio. This aspect will be used to generate access logs (think [Common Log Format](https://en.wikipedia.org/wiki/Common_Log_Format)).

Former-commit-id: 67dcce30bd8c68500b67ab33fc9bf2281efd62b1
mandarjog pushed a commit that referenced this pull request Nov 2, 2017
* Initial version

* Refactor for better testing

* Update framework for testing and added test

* Bazelify istio

* Simplified interfaces

* Refactor code to use Cleanable interface

* go formating (#140)

* go formating

* Updated Jenkinsfile to run tests

* Separate TestInfo to another module (#144)

* Separete TestInfo to another module

Implemented status file creation
Implemented log upload to cloud storage
Rename SetUp to Setup and TearDown to Teardown

* Add more info in TestStatus

* Rename InitLogging to InitGlog

* Resolving comments

* Return skipDir error on err

* Adding Code Checks + Fix them (#151)

* Not uploading logs_bucket_path flag is unset

* Added code checks

* Fix linter errors

* Update Jenkins to use a goBuildNode

* e2e test: Create namespace and deploy istio core and test app (#145)

* Create namespace and deploy namespace

* Get runtime source path

* Correct pr comments, add GetGateWay()

* Add default route test

* Add version routing tests, fix linter and fix comments on pr

* Add fault delay test and fix comments

* Add version migration test

* Add Hop App + testing (#162)

* Implemented echo App

* Adding test + refactoring

* Added more tests

* Resolved review comments

* Use slices instead of pointers to slices

* Fix formatting

* Merge master to e2e (#165)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Small doc updates. (#163)

* Demo test update + Docker file creation for Hop App (#172)

* Renamed default env const

* Added support for server update for version

* Added a binary for Hop + Docker Image

* WIP

* Modified kubernetes setup + demo test

* Fixed Jenkinsfile

* Fix comments

* Fix format

* Removing app_flag as set directly in template

* Fixed resp.close() was called on empty resp

* Moved test to their own folder

* Fixes e2e.sh

* Make e2e.sh more verbose

* Merge from istio:master, change install source to istio-install and setup istioctl (#175)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Separate Istio CA installation from default.

Istio CA should not be installed by default.

Created istio-cluster-ca.yaml and istio-namespace-ca.yaml for deploying the
per-cluster and per-namespace CAs, so that users do not need to modify the files
for different use cases.

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Fix Istio CA files to create namespace.

* Update one-off auth yaml files.

* Small doc updates. (#163)

* Improve Istio one-off yaml files for Istio auth.

* Fix links.

* Up the blanked rl to 5000, so it does not interfere with tests (#167)

* Rename istio-ingress-controller to istio-ingress

* Changed labels for ingress and ingress

* update to rule schema to reflect switch from double to duration (#168)

* update to rule schema to reflect switch from double to duration
* pointed to my dockerhub
* Updating istio version

* Regenerate

* Change in scripts

* Install istio from istio-install, add os x support and add setupIstioctl

* fix lineter

* Get rule files from demos/apps, istioctl cleanable and comments fix

* small change

* appManager cleanablization

* Merge master to e2e (#181)

* update version for testing (#147)

Also update quota descriptors

* Update copyright.

* use lowercase zipkin trace headers (#152)

* Add support for 1.6 with RBAC and change install to use one file. (#150)

* Added RBAC roles and bindings
* Script to generate merged configs for 1.5 and 1.6 - the 1.6 works wit rbac on or off. 

To avoid confusion, auth will be added in separate PR

* Update the tag for manager/proxy containers

* Port forward manager service and enable istio manager env var

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Run service port-forward in the background and tidy it up

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add yaml template for manager into istio-16.yaml

* Remove errant local

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver to istio manager deploy

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* added egress proxy to istio install folder to be referenced by istio.io docs

* bug fix

* Separate Istio CA installation from default.

Istio CA should not be installed by default.

Created istio-cluster-ca.yaml and istio-namespace-ca.yaml for deploying the
per-cluster and per-namespace CAs, so that users do not need to modify the files
for different use cases.

* Remove apiserver address

Signed-off-by: LIAM White <liamwhite@uk.ibm.com>

* Add apiserver and egress

* Fix Istio CA files to create namespace.

* Update one-off auth yaml files.

* Small doc updates. (#163)

* Improve Istio one-off yaml files for Istio auth.

* Fix links.

* Up the blanked rl to 5000, so it does not interfere with tests (#167)

* Rename istio-ingress-controller to istio-ingress

* Changed labels for ingress and ingress

* update to rule schema to reflect switch from double to duration (#168)

* update to rule schema to reflect switch from double to duration
* pointed to my dockerhub
* Updating istio version

* Regenerate

* Change in scripts

* update to gcr.io/istio-testing versions (#170)

1. Update mixer, manager, proxy versions to include rate limit fixes
2. Remove mixer configmap. The default config is now baked inside mixer.
3. expose mixer metrics and configapi ports thru port forwarding.
4. Add "wrk" for testing. drive traffic and fetch metrics as a setup for full
5. ratelimit integration test. That PR will follow.

* Add ingress service for correct status IP

* Support for istio-ca in tests/updateVersion.sh (#180)

* Update updateVersion.sh to take into account istio-ca

* Updates with updateVersion.sh

* Create README.md for e2e test framework (#182)

* Create README.md for e2e test framework

* small change

Former-commit-id: 0adf4c4
howardjohn pushed a commit to howardjohn/istio that referenced this pull request Jan 12, 2020
luksa pushed a commit to luksa/istio that referenced this pull request Oct 26, 2020
luksa added a commit to luksa/istio that referenced this pull request Jan 25, 2021
MAISTRA-1528 Update bookinfo to pick up CVE fixes

(cherry picked from commit 230e9f20218141994d9fc51a680f47a61d546606)

MAISTRA-1783 maistra istio samples yaml files need sidecar injection for testing (istio#172)

Co-authored-by: Marko Lukša <marko.luksa@gmail.com>
luksa added a commit to luksa/istio that referenced this pull request Jun 30, 2021
MAISTRA-1528 Update bookinfo to pick up CVE fixes

(cherry picked from commit 230e9f20218141994d9fc51a680f47a61d546606)

MAISTRA-1783 maistra istio samples yaml files need sidecar injection for testing (istio#172)

Co-authored-by: Marko Lukša <marko.luksa@gmail.com>
su225 pushed a commit to su225/istio that referenced this pull request Jul 15, 2021
…nt from `Proxy.IPAddresses` (istio#150) (istio#172)

Signed-off-by: Yaroslav Skopets <yaroslav@tetrate.io>
su225 pushed a commit to su225/istio that referenced this pull request Sep 15, 2021
…nt from `Proxy.IPAddresses` (istio#150) (istio#172)

Signed-off-by: Yaroslav Skopets <yaroslav@tetrate.io>
incfly pushed a commit to incfly/istio that referenced this pull request Dec 21, 2021
…nt from `Proxy.IPAddresses` (istio#150) (istio#172) (istio#218)

Signed-off-by: Yaroslav Skopets <yaroslav@tetrate.io>
luksa added a commit to luksa/istio that referenced this pull request Feb 22, 2022
…stio#237)

MAISTRA-1528 Update bookinfo to pick up CVE fixes

(cherry picked from commit 230e9f20218141994d9fc51a680f47a61d546606)

MAISTRA-1783 maistra istio samples yaml files need sidecar injection for testing (istio#172)

Co-authored-by: Marko Lukša <marko.luksa@gmail.com>
luksa added a commit to luksa/istio that referenced this pull request Apr 29, 2022
…stio#237)

MAISTRA-1528 Update bookinfo to pick up CVE fixes

(cherry picked from commit 230e9f20218141994d9fc51a680f47a61d546606)

MAISTRA-1783 maistra istio samples yaml files need sidecar injection for testing (istio#172)

Co-authored-by: Marko Lukša <marko.luksa@gmail.com>
vikaschoudhary16 pushed a commit to vikaschoudhary16/istio that referenced this pull request May 3, 2022
…nt from `Proxy.IPAddresses` (istio#150) (istio#172) (istio#218) (istio#234)

Signed-off-by: Yaroslav Skopets <yaroslav@tetrate.io>
stevenctl pushed a commit to stevenctl/istio that referenced this pull request Aug 13, 2022
…io#172)

* telemetry: ensure stats filter only in appropriate filter chains

* move mx enablement logic into code

* add ambient check
aniketsingh03 pushed a commit to aniketsingh03/istio-1 that referenced this pull request Oct 4, 2022
…nt from `Proxy.IPAddresses` (istio#150) (istio#172) (istio#218) (istio#272)

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.

4 participants