{"url":"https://api.github.com/repos/cert-manager/website/pulls/2011","id":3386615380,"node_id":"PR_kwDOC5vAhc7J26ZU","html_url":"https://github.com/cert-manager/website/pull/2011","diff_url":"https://github.com/cert-manager/website/pull/2011.diff","patch_url":"https://github.com/cert-manager/website/pull/2011.patch","issue_url":"https://api.github.com/repos/cert-manager/website/issues/2011","number":2011,"state":"closed","locked":false,"title":"docs: remove config.apiVersion/kind from Helm values examples","user":{"login":"Copilot","id":198982749,"node_id":"BOT_kgDOC9w8XQ","avatar_url":"https://avatars.githubusercontent.com/in/1143301?v=4","gravatar_id":"","url":"https://api.github.com/users/Copilot","html_url":"https://github.com/apps/copilot-swe-agent","followers_url":"https://api.github.com/users/Copilot/followers","following_url":"https://api.github.com/users/Copilot/following{/other_user}","gists_url":"https://api.github.com/users/Copilot/gists{/gist_id}","starred_url":"https://api.github.com/users/Copilot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Copilot/subscriptions","organizations_url":"https://api.github.com/users/Copilot/orgs","repos_url":"https://api.github.com/users/Copilot/repos","events_url":"https://api.github.com/users/Copilot/events{/privacy}","received_events_url":"https://api.github.com/users/Copilot/received_events","type":"Bot","user_view_type":"public","site_admin":false},"body":"The cert-manager Helm chart now automatically defaults `config.apiVersion` and `config.kind` for controller configuration, so users no longer need to set them explicitly.\n\n## Changes\n\n- **`content/docs/usage/gateway.md`** — removed `config.apiVersion` + `config.kind` from both the Gateway API enablement section and the ListenerSet section (values.yaml snippets and `--set` flags)\n- **`content/docs/configuration/acme/http01/README.md`** — same removal from the Gateway API HTTP-01 solver section\n- **`content/docs/devops-tips/scaling-cert-manager.md`** — same removal from the rate-limiting and server-side apply config examples\n\n## Before / After\n\n```yaml\n# Before\nconfig:\n  apiVersion: controller.config.cert-manager.io/v1alpha1\n  kind: ControllerConfiguration\n  enableGatewayAPI: true\n\n# After\nconfig:\n  enableGatewayAPI: true\n```\n\n```sh\n# Before\nhelm upgrade --install cert-manager ... \\\n  --set config.apiVersion=\"controller.config.cert-manager.io/v1alpha1\" \\\n  --set config.kind=\"ControllerConfiguration\" \\\n  --set config.enableGatewayAPI=true\n\n# After\nhelm upgrade --install cert-manager ... \\\n  --set config.enableGatewayAPI=true\n```\n\nDocs under `content/v*-docs/` (previous versions) are intentionally left unchanged.\n\n<!-- START COPILOT ORIGINAL PROMPT -->\n\n\n\n<details>\n\n<summary>Original prompt</summary>\n\nCreate a PR in `cert-manager/website` (base branch: `master`) updating the docs to reflect that Helm chart now defaults the config object's `apiVersion` and `kind`, so users no longer need to set them.\n\nScope:\n- Only update docs where config is used as Helm values (either via `values.yaml` snippets or via `helm --set ...` flags).\n- Do NOT update docs for previous versions under `content/v*-docs/`.\n\nRequired doc updates:\n1) `content/docs/usage/gateway.md`\n   - In the section enabling Gateway API support, update the `config` Helm values example to remove `config.apiVersion` and `config.kind` (or clearly mark them as optional/defaulted).\n   - Update the corresponding Helm command example to remove `--set config.apiVersion=...` and `--set config.kind=...` (or mark optional/defaulted).\n   - In the ListenerSet section, do the same for the `values.yaml` and Helm command examples.\n\n2) `content/docs/configuration/acme/http01/README.md`\n   - Update the `config` Helm values example to remove `config.apiVersion` and `config.kind` (or mark optional/defaulted).\n   - Update the corresponding Helm command example to remove `--set config.apiVersion=...` and `--set config.kind=...` (or mark optional/defaulted).\n\n3) `content/docs/devops-tips/scaling-cert-manager.md`\n   - Update the Helm values example to remove `config.apiVersion` and `config.kind` (or mark optional/defaulted).\n\nGuidance:\n- Keep the examples valid YAML / valid Helm CLI.\n- Prefer removing the lines/flags entirely unless there is strong value in keeping them as commented optional fields.\n- Ensure consistency across docs.\n- Run/ensure any formatting/linting conventions the repo expects for Markdown.\n\nContext:\nThis change reflects Helm chart behavior: defaulting `config.apiVersion` and `config.kind` for controller config. Similar defaulting exists for `cainjector.config...` and `webhook.config...`, but only update files where those are actually used as Helm values examples (none identified yet in non-versioned docs during the search).\n\nThe following is the prior conversation context from the user's chat exploration (may be truncated):\n\nUser: We added a feature to the helm chart that will default config apiVersion and kind, for example you dont need to set \"apiVersion: controller.config.cert-manager.io/v1alpha1\" and \"kind: ControllerConfiguration\" anymore\n\nThis is also true for cainjector.config.cert-manager.io/v1alpha1 - CAInjectorConfiguration & webhook.config.cert-manager.io/v1alpha1 - WebhookConfiguration\n\nFind all the places in the docs that need updating. \n\nDont bother looking at docs for previous versions (content/v-bla-docs)\n\nAssistant: Places in **cert-manager/website** docs (excluding `content/v*-docs/`) that still tell users to set `apiVersion` and `kind` for Helm chart config values (and should be updated now that these default):\n\n1. `content/docs/usage/gateway.md`\n   - Mentions:\n     - `config.apiVersion: controller.config.cert-manager.io/v1alpha1`\n     - `config.kind: ControllerConfiguration`\n     - Also shows Helm CLI flags: `--set config.apiVersion=...` / `--set config.kind=...`\n   - Ref: https://github.com/cert-manager/website/blob/0e5469523121bdf6bfddb8262baa95bdce7fcfe8/content/docs/usage/gateway.md#L42-L143  \n   - Also appears again in the ListenerSet section:\n     - Ref: https://github.com/cert-manager/website/blob/0e5469523121bdf6bfddb8262baa95bdce7fcfe8/content/docs/usage/gateway.md#L482-L579\n\n2. `content/docs/configuration/acme/http01/README.md`\n   - Mentions:\n     - `config.apiVersion: controller.config.cert-manager.io/v1alpha1`\n     - `config.kind: ControllerConfiguration`\n     - Also shows Helm CLI flags: `--set config.apiVersion=...` / `--set config.kind=...`\n   - Ref: https://github.com/cert-manager/website/blob/0e5469523121bdf6bfddb8262baa95bdce7fcfe8/content/docs/configuration/acme/http01/README.md#L205-L302\n\n3. `content/docs/devops-tips/scaling-cert-manager.md`\n   - Mentions (in Helm values example):\n     - `config.apiVersion: controller.config.cert-manager.io/v1alpha1`\n     - `config.kind: ControllerConfiguration`\n   - Ref: https://github.com/cert-manager/website/blob/0e5469523121bdf6bfddb8262baa95bdce7fcfe8/content/docs/devops-tips/scaling-cert-manager.md#L20-L73\n\n4. `content/docs/installation/configuring-components.md`\n   - Contains example configuration files (not Helm values) that include:\n     - `apiVersion: controller.config.cert-manager.io/v1alpha1` / `kind: ControllerConfiguration`\n     - `apiVersion: webhook.config.cert-manager.io/v1alpha1` / `kind: WebhookConfiguration`\n   - These *may or may not* need changes depending on whether your “defaults” change applies only to **Helm values** (`config:` / `webhook.config:`) vs also to literal YAML config files on disk (the docs here are “configuration file” examples, not Helm values examples).\n   - Ref: https://github.com/cert-manager/website/blob/0e5469523121bdf6bfddb8262baa95bdce7fcfe8/content/docs/installation/configuring-components.md#L13-L96\n\n5. Release notes call-out (ma...\n\n</details>\n\n\n\n<!-- START COPILOT CODING AGENT SUFFIX -->\n\n*This pull request was created from Copilot chat.*\n>\n\n<!-- START COPILOT CODING AGENT TIPS -->\n---\n\n💬 We'd love your input! Share your thoughts on Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey).\n","created_at":"2026-03-11T22:49:12Z","updated_at":"2026-03-12T10:44:36Z","closed_at":"2026-03-12T02:13:44Z","merged_at":"2026-03-12T02:13:44Z","merge_commit_sha":"875dbd5833bc55fe42eac05dadbdccf420c764bd","assignees":[{"login":"ThatsMrTalbot","id":15379715,"node_id":"MDQ6VXNlcjE1Mzc5NzE1","avatar_url":"https://avatars.githubusercontent.com/u/15379715?v=4","gravatar_id":"","url":"https://api.github.com/users/ThatsMrTalbot","html_url":"https://github.com/ThatsMrTalbot","followers_url":"https://api.github.com/users/ThatsMrTalbot/followers","following_url":"https://api.github.com/users/ThatsMrTalbot/following{/other_user}","gists_url":"https://api.github.com/users/ThatsMrTalbot/gists{/gist_id}","starred_url":"https://api.github.com/users/ThatsMrTalbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ThatsMrTalbot/subscriptions","organizations_url":"https://api.github.com/users/ThatsMrTalbot/orgs","repos_url":"https://api.github.com/users/ThatsMrTalbot/repos","events_url":"https://api.github.com/users/ThatsMrTalbot/events{/privacy}","received_events_url":"https://api.github.com/users/ThatsMrTalbot/received_events","type":"User","user_view_type":"public","site_admin":false},{"login":"Copilot","id":198982749,"node_id":"BOT_kgDOC9w8XQ","avatar_url":"https://avatars.githubusercontent.com/in/1143301?v=4","gravatar_id":"","url":"https://api.github.com/users/Copilot","html_url":"https://github.com/apps/copilot-swe-agent","followers_url":"https://api.github.com/users/Copilot/followers","following_url":"https://api.github.com/users/Copilot/following{/other_user}","gists_url":"https://api.github.com/users/Copilot/gists{/gist_id}","starred_url":"https://api.github.com/users/Copilot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Copilot/subscriptions","organizations_url":"https://api.github.com/users/Copilot/orgs","repos_url":"https://api.github.com/users/Copilot/repos","events_url":"https://api.github.com/users/Copilot/events{/privacy}","received_events_url":"https://api.github.com/users/Copilot/received_events","type":"Bot","user_view_type":"public","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":1663328248,"node_id":"MDU6TGFiZWwxNjYzMzI4MjQ4","url":"https://api.github.com/repos/cert-manager/website/labels/approved","name":"approved","color":"0ffa16","default":false,"description":"Indicates a PR has been approved by an approver from all required OWNERS files."},{"id":1663348818,"node_id":"MDU6TGFiZWwxNjYzMzQ4ODE4","url":"https://api.github.com/repos/cert-manager/website/labels/dco-signoff:%20yes","name":"dco-signoff: yes","color":"61e552","default":false,"description":"Indicates that all commits in the pull request have the valid DCO sign-off message."},{"id":1663363245,"node_id":"MDU6TGFiZWwxNjYzMzYzMjQ1","url":"https://api.github.com/repos/cert-manager/website/labels/lgtm","name":"lgtm","color":"15dd18","default":false,"description":"Indicates that a PR is ready to be merged."},{"id":1663363301,"node_id":"MDU6TGFiZWwxNjYzMzYzMzAx","url":"https://api.github.com/repos/cert-manager/website/labels/size/S","name":"size/S","color":"77bb00","default":false,"description":"Denotes a PR that changes 10-29 lines, ignoring generated files."}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/cert-manager/website/pulls/2011/commits","review_comments_url":"https://api.github.com/repos/cert-manager/website/pulls/2011/comments","review_comment_url":"https://api.github.com/repos/cert-manager/website/pulls/comments{/number}","comments_url":"https://api.github.com/repos/cert-manager/website/issues/2011/comments","statuses_url":"https://api.github.com/repos/cert-manager/website/statuses/77e7bb6b0377f9a38e7f8825ae6c90be89d08211","head":{"label":"cert-manager:copilot/update-helm-chart-docs","ref":"copilot/update-helm-chart-docs","sha":"77e7bb6b0377f9a38e7f8825ae6c90be89d08211","user":{"login":"cert-manager","id":39950598,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM5OTUwNTk4","avatar_url":"https://avatars.githubusercontent.com/u/39950598?v=4","gravatar_id":"","url":"https://api.github.com/users/cert-manager","html_url":"https://github.com/cert-manager","followers_url":"https://api.github.com/users/cert-manager/followers","following_url":"https://api.github.com/users/cert-manager/following{/other_user}","gists_url":"https://api.github.com/users/cert-manager/gists{/gist_id}","starred_url":"https://api.github.com/users/cert-manager/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cert-manager/subscriptions","organizations_url":"https://api.github.com/users/cert-manager/orgs","repos_url":"https://api.github.com/users/cert-manager/repos","events_url":"https://api.github.com/users/cert-manager/events{/privacy}","received_events_url":"https://api.github.com/users/cert-manager/received_events","type":"Organization","user_view_type":"public","site_admin":false},"repo":{"id":194756741,"node_id":"MDEwOlJlcG9zaXRvcnkxOTQ3NTY3NDE=","name":"website","full_name":"cert-manager/website","private":false,"owner":{"login":"cert-manager","id":39950598,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM5OTUwNTk4","avatar_url":"https://avatars.githubusercontent.com/u/39950598?v=4","gravatar_id":"","url":"https://api.github.com/users/cert-manager","html_url":"https://github.com/cert-manager","followers_url":"https://api.github.com/users/cert-manager/followers","following_url":"https://api.github.com/users/cert-manager/following{/other_user}","gists_url":"https://api.github.com/users/cert-manager/gists{/gist_id}","starred_url":"https://api.github.com/users/cert-manager/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cert-manager/subscriptions","organizations_url":"https://api.github.com/users/cert-manager/orgs","repos_url":"https://api.github.com/users/cert-manager/repos","events_url":"https://api.github.com/users/cert-manager/events{/privacy}","received_events_url":"https://api.github.com/users/cert-manager/received_events","type":"Organization","user_view_type":"public","site_admin":false},"html_url":"https://github.com/cert-manager/website","description":"Source code for the cert-manager.io website, including project documentation","fork":false,"url":"https://api.github.com/repos/cert-manager/website","forks_url":"https://api.github.com/repos/cert-manager/website/forks","keys_url":"https://api.github.com/repos/cert-manager/website/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cert-manager/website/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cert-manager/website/teams","hooks_url":"https://api.github.com/repos/cert-manager/website/hooks","issue_events_url":"https://api.github.com/repos/cert-manager/website/issues/events{/number}","events_url":"https://api.github.com/repos/cert-manager/website/events","assignees_url":"https://api.github.com/repos/cert-manager/website/assignees{/user}","branches_url":"https://api.github.com/repos/cert-manager/website/branches{/branch}","tags_url":"https://api.github.com/repos/cert-manager/website/tags","blobs_url":"https://api.github.com/repos/cert-manager/website/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cert-manager/website/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cert-manager/website/git/refs{/sha}","trees_url":"https://api.github.com/repos/cert-manager/website/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cert-manager/website/statuses/{sha}","languages_url":"https://api.github.com/repos/cert-manager/website/languages","stargazers_url":"https://api.github.com/repos/cert-manager/website/stargazers","contributors_url":"https://api.github.com/repos/cert-manager/website/contributors","subscribers_url":"https://api.github.com/repos/cert-manager/website/subscribers","subscription_url":"https://api.github.com/repos/cert-manager/website/subscription","commits_url":"https://api.github.com/repos/cert-manager/website/commits{/sha}","git_commits_url":"https://api.github.com/repos/cert-manager/website/git/commits{/sha}","comments_url":"https://api.github.com/repos/cert-manager/website/comments{/number}","issue_comment_url":"https://api.github.com/repos/cert-manager/website/issues/comments{/number}","contents_url":"https://api.github.com/repos/cert-manager/website/contents/{+path}","compare_url":"https://api.github.com/repos/cert-manager/website/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cert-manager/website/merges","archive_url":"https://api.github.com/repos/cert-manager/website/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cert-manager/website/downloads","issues_url":"https://api.github.com/repos/cert-manager/website/issues{/number}","pulls_url":"https://api.github.com/repos/cert-manager/website/pulls{/number}","milestones_url":"https://api.github.com/repos/cert-manager/website/milestones{/number}","notifications_url":"https://api.github.com/repos/cert-manager/website/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cert-manager/website/labels{/name}","releases_url":"https://api.github.com/repos/cert-manager/website/releases{/id}","deployments_url":"https://api.github.com/repos/cert-manager/website/deployments","created_at":"2019-07-01T23:42:32Z","updated_at":"2026-04-03T10:20:00Z","pushed_at":"2026-04-04T00:25:52Z","git_url":"git://github.com/cert-manager/website.git","ssh_url":"git@github.com:cert-manager/website.git","clone_url":"https://github.com/cert-manager/website.git","svn_url":"https://github.com/cert-manager/website","homepage":"https://cert-manager.io","size":22317,"stargazers_count":63,"watchers_count":63,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"has_discussions":true,"forks_count":390,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":83,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":true,"has_pull_requests":true,"pull_request_creation_policy":"all","topics":["cert-manager","hacktoberfest"],"visibility":"public","forks":390,"open_issues":83,"watchers":63,"default_branch":"master"}},"base":{"label":"cert-manager:master","ref":"master","sha":"0e5469523121bdf6bfddb8262baa95bdce7fcfe8","user":{"login":"cert-manager","id":39950598,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM5OTUwNTk4","avatar_url":"https://avatars.githubusercontent.com/u/39950598?v=4","gravatar_id":"","url":"https://api.github.com/users/cert-manager","html_url":"https://github.com/cert-manager","followers_url":"https://api.github.com/users/cert-manager/followers","following_url":"https://api.github.com/users/cert-manager/following{/other_user}","gists_url":"https://api.github.com/users/cert-manager/gists{/gist_id}","starred_url":"https://api.github.com/users/cert-manager/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cert-manager/subscriptions","organizations_url":"https://api.github.com/users/cert-manager/orgs","repos_url":"https://api.github.com/users/cert-manager/repos","events_url":"https://api.github.com/users/cert-manager/events{/privacy}","received_events_url":"https://api.github.com/users/cert-manager/received_events","type":"Organization","user_view_type":"public","site_admin":false},"repo":{"id":194756741,"node_id":"MDEwOlJlcG9zaXRvcnkxOTQ3NTY3NDE=","name":"website","full_name":"cert-manager/website","private":false,"owner":{"login":"cert-manager","id":39950598,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM5OTUwNTk4","avatar_url":"https://avatars.githubusercontent.com/u/39950598?v=4","gravatar_id":"","url":"https://api.github.com/users/cert-manager","html_url":"https://github.com/cert-manager","followers_url":"https://api.github.com/users/cert-manager/followers","following_url":"https://api.github.com/users/cert-manager/following{/other_user}","gists_url":"https://api.github.com/users/cert-manager/gists{/gist_id}","starred_url":"https://api.github.com/users/cert-manager/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cert-manager/subscriptions","organizations_url":"https://api.github.com/users/cert-manager/orgs","repos_url":"https://api.github.com/users/cert-manager/repos","events_url":"https://api.github.com/users/cert-manager/events{/privacy}","received_events_url":"https://api.github.com/users/cert-manager/received_events","type":"Organization","user_view_type":"public","site_admin":false},"html_url":"https://github.com/cert-manager/website","description":"Source code for the cert-manager.io website, including project documentation","fork":false,"url":"https://api.github.com/repos/cert-manager/website","forks_url":"https://api.github.com/repos/cert-manager/website/forks","keys_url":"https://api.github.com/repos/cert-manager/website/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cert-manager/website/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cert-manager/website/teams","hooks_url":"https://api.github.com/repos/cert-manager/website/hooks","issue_events_url":"https://api.github.com/repos/cert-manager/website/issues/events{/number}","events_url":"https://api.github.com/repos/cert-manager/website/events","assignees_url":"https://api.github.com/repos/cert-manager/website/assignees{/user}","branches_url":"https://api.github.com/repos/cert-manager/website/branches{/branch}","tags_url":"https://api.github.com/repos/cert-manager/website/tags","blobs_url":"https://api.github.com/repos/cert-manager/website/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cert-manager/website/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cert-manager/website/git/refs{/sha}","trees_url":"https://api.github.com/repos/cert-manager/website/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cert-manager/website/statuses/{sha}","languages_url":"https://api.github.com/repos/cert-manager/website/languages","stargazers_url":"https://api.github.com/repos/cert-manager/website/stargazers","contributors_url":"https://api.github.com/repos/cert-manager/website/contributors","subscribers_url":"https://api.github.com/repos/cert-manager/website/subscribers","subscription_url":"https://api.github.com/repos/cert-manager/website/subscription","commits_url":"https://api.github.com/repos/cert-manager/website/commits{/sha}","git_commits_url":"https://api.github.com/repos/cert-manager/website/git/commits{/sha}","comments_url":"https://api.github.com/repos/cert-manager/website/comments{/number}","issue_comment_url":"https://api.github.com/repos/cert-manager/website/issues/comments{/number}","contents_url":"https://api.github.com/repos/cert-manager/website/contents/{+path}","compare_url":"https://api.github.com/repos/cert-manager/website/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cert-manager/website/merges","archive_url":"https://api.github.com/repos/cert-manager/website/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cert-manager/website/downloads","issues_url":"https://api.github.com/repos/cert-manager/website/issues{/number}","pulls_url":"https://api.github.com/repos/cert-manager/website/pulls{/number}","milestones_url":"https://api.github.com/repos/cert-manager/website/milestones{/number}","notifications_url":"https://api.github.com/repos/cert-manager/website/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cert-manager/website/labels{/name}","releases_url":"https://api.github.com/repos/cert-manager/website/releases{/id}","deployments_url":"https://api.github.com/repos/cert-manager/website/deployments","created_at":"2019-07-01T23:42:32Z","updated_at":"2026-04-03T10:20:00Z","pushed_at":"2026-04-04T00:25:52Z","git_url":"git://github.com/cert-manager/website.git","ssh_url":"git@github.com:cert-manager/website.git","clone_url":"https://github.com/cert-manager/website.git","svn_url":"https://github.com/cert-manager/website","homepage":"https://cert-manager.io","size":22317,"stargazers_count":63,"watchers_count":63,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"has_discussions":true,"forks_count":390,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":83,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":true,"has_pull_requests":true,"pull_request_creation_policy":"all","topics":["cert-manager","hacktoberfest"],"visibility":"public","forks":390,"open_issues":83,"watchers":63,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cert-manager/website/pulls/2011"},"html":{"href":"https://github.com/cert-manager/website/pull/2011"},"issue":{"href":"https://api.github.com/repos/cert-manager/website/issues/2011"},"comments":{"href":"https://api.github.com/repos/cert-manager/website/issues/2011/comments"},"review_comments":{"href":"https://api.github.com/repos/cert-manager/website/pulls/2011/comments"},"review_comment":{"href":"https://api.github.com/repos/cert-manager/website/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/cert-manager/website/pulls/2011/commits"},"statuses":{"href":"https://api.github.com/repos/cert-manager/website/statuses/77e7bb6b0377f9a38e7f8825ae6c90be89d08211"}},"author_association":"CONTRIBUTOR","auto_merge":null,"assignee":null,"active_lock_reason":null,"merged":true,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":{"login":"cert-manager-prow[bot]","id":167124277,"node_id":"BOT_kgDOCfYdNQ","avatar_url":"https://avatars.githubusercontent.com/in/877404?v=4","gravatar_id":"","url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D","html_url":"https://github.com/apps/cert-manager-prow","followers_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/followers","following_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/repos","events_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/cert-manager-prow%5Bbot%5D/received_events","type":"Bot","user_view_type":"public","site_admin":false},"comments":10,"review_comments":0,"maintainer_can_modify":false,"commits":2,"additions":0,"deletions":16,"changed_files":3}