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

Add feature toggle for custom error pages /metrics #10984

Open
wants to merge 14 commits into
base: main
Choose a base branch
from

Conversation

ricardoapl
Copy link

@ricardoapl ricardoapl commented Feb 14, 2024

What this PR does / why we need it:

Adds feature toggle to expose /metrics and /debug/vars endpoints from custom error pages default backend

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • CVE Report (Scanner found CVE and adding report)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation only

Which issue/s this PR fixes

Fixes #9152

How Has This Been Tested?

Tested manually on local machine by running the binary with different environment variable combinations such as

ERROR_FILES_PATH=./www ./app

curl --include 127.0.0.1:8080/
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:29:18 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8080/metrics
HTTP/1.1 200 OK
Content-Type: text/plain; version=0.0.4; charset=utf-8
Date: Fri, 16 Feb 2024 11:30:10 GMT
Transfer-Encoding: chunked

# HELP default_http_backend_http_request_count_total Counter of HTTP requests made.
# TYPE default_http_backend_http_request_count_total counter
default_http_backend_http_request_count_total{proto="1.1"} 8
...

curl --include 127.0.0.1:8080/debug/vars
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Date: Fri, 16 Feb 2024 11:31:25 GMT
Transfer-Encoding: chunked

{
"cmdline": ["./app"],
...
METRICS_PORT=8081 ERROR_FILES_PATH=./www ./app

curl --include 127.0.0.1:8080/
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:33:09 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8080/metrics
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:33:55 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8081/metrics
HTTP/1.1 200 OK
Content-Type: text/plain; version=0.0.4; charset=utf-8
Date: Fri, 16 Feb 2024 11:34:21 GMT
Transfer-Encoding: chunked

# HELP default_http_backend_http_request_count_total Counter of HTTP requests made.
# TYPE default_http_backend_http_request_count_total counter
...
IS_EXPORT_METRICS=false METRICS_PORT=8081 ERROR_FILES_PATH=./www ./app

curl --include 127.0.0.1:8080/        
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:37:37 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8080/metrics
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:37:49 GMT
Content-Length: 60

<span>The page you're looking for could not be found.

curl --include 127.0.0.1:8080/debug/vars
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:40:47 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8081/metrics
curl: (7) Failed to connect to 127.0.0.1 port 8081 after 0 ms: Couldn't connect to server

curl --include 127.0.0.1:8081/debug/vars
curl: (7) Failed to connect to 127.0.0.1 port 8081 after 0 ms: Couldn't connect to server
IS_EXPORT_METRICS=false ERROR_FILES_PATH=./www ./app

curl --include 127.0.0.1:8080/       
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:39:42 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8080/metrics
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:39:59 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

curl --include 127.0.0.1:8080/debug/vars
HTTP/1.1 404 Not Found
Content-Type: text/html
Date: Fri, 16 Feb 2024 11:40:09 GMT
Content-Length: 60

<span>The page you're looking for could not be found.</span>

Checklist:

  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I've read the CONTRIBUTION guide
  • I have added unit and/or e2e tests to cover my changes.
  • All new and existing tests passed.

@k8s-ci-robot k8s-ci-robot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Feb 14, 2024
Copy link

netlify bot commented Feb 14, 2024

Deploy Preview for kubernetes-ingress-nginx canceled.

Name Link
🔨 Latest commit 6d2f8d0
🔍 Latest deploy log https://app.netlify.com/sites/kubernetes-ingress-nginx/deploys/664c77eab78d40000854010d

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Feb 14, 2024
@k8s-ci-robot
Copy link
Contributor

This issue is currently awaiting triage.

If Ingress contributors determines this is a relevant issue, they will accept it by applying the triage/accepted label and provide further guidance.

The triage/accepted label can be added by org members by writing /triage accepted in a comment.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot k8s-ci-robot added the needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. label Feb 14, 2024
@k8s-ci-robot
Copy link
Contributor

Welcome @ricardoapl!

It looks like this is your first PR to kubernetes/ingress-nginx 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes/ingress-nginx has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added needs-kind Indicates a PR lacks a `kind/foo` label and requires one. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Feb 14, 2024
@k8s-ci-robot
Copy link
Contributor

Hi @ricardoapl. Thanks for your PR.

I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot k8s-ci-robot added needs-priority size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Feb 14, 2024
@ricardoapl
Copy link
Author

This is still missing changes to the Helm chart, but I would really appreciate some feedback before the implementation is complete

@k8s-ci-robot k8s-ci-robot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. area/helm Issues or PRs related to helm charts and removed size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Feb 15, 2024
@ricardoapl ricardoapl changed the title [WIP] Add feature toggle for custom error pages /metrics Add feature toggle for custom error pages /metrics Feb 16, 2024
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Feb 16, 2024
@ricardoapl
Copy link
Author

/assign @tao12345666333

@tao12345666333
Copy link
Member

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Mar 14, 2024
@ricardoapl
Copy link
Author

@tao12345666333 @strongjz please take another look, I believe I have resolved all of the issues

@tao12345666333
Copy link
Member

Thanks! I will have a test today.

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: ricardoapl
Once this PR has been reviewed and has the lgtm label, please ask for approval from tao12345666333. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 13, 2024
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
@k8s-ci-robot k8s-ci-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 14, 2024
@tao12345666333
Copy link
Member

I have re-run the Helm chart lint job

@ricardoapl
Copy link
Author

I have re-run the Helm chart lint job

Thank you @tao12345666333, I believe I have made a mistake in the Helm chart unit tests -- I will fix that

I will also try to add an e2e test for these changes as suggested by @strongjz on Slack

Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
Signed-off-by: Ricardo Lopes <ricardoapl.dev@gmail.com>
@ricardoapl
Copy link
Author

I have fixed the Helm chart unit tests and added e2e tests as well

Please take another look @tao12345666333

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/docs area/helm Issues or PRs related to helm charts cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-kind Indicates a PR lacks a `kind/foo` label and requires one. needs-priority needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

custom-error-pages: Add an ability to disable "/metrics", "/healthz" and "/debug/vars" endpoints
4 participants