mirror of
https://github.com/status-im/consul.git
synced 2025-02-07 19:35:35 +00:00
* added usage folder to organize use case docs for CAPIgw * Add peer field to MeshService configuration page * Add first pass at guide for routing to peered services * Add exception to same-datacenter restriction for referenced Consul service * Add example HTTPRoute referencing the MeshService as backendRef * Add example ServiceResolver * Add note about current ServiceResolver requirement ServiceResolver may eventually be created implicitly by the API gateway controller, but that decision is pending. * tweaks to the usage page for routing to peered services * tweaks to the description in the configuration reference * resolved TO-DOs from previous iteration * Remove datacenter federation from limited support matrix * added tolerations doc * Remove note excluding k8s 1.24 since we now support it * Reorder sections to maintain alphabetical sort * Add example configuration for MeshService resource * Adjust wording + indentation of other docs * Use consistent "example-" prefix for resource names in example code * reframed the tolerations documentation; STILL A WIP * add helm chart documentation * removed tolerations from gwcconfig configuration model reference * Apply suggestions from code review Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> * update version to 0.5.0 * Update install.mdx * added release notes for v.0.5.x Co-authored-by: Nathan Coleman <nathan.coleman@hashicorp.com> Co-authored-by: Sarah Alsmiller <sarah.alsmiller@hashicorp.com> Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> Co-authored-by: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com>
60 lines
2.5 KiB
Plaintext
60 lines
2.5 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: Consul API Gateway Error Messages
|
|
description: >-
|
|
Learn how to apply a configured Consul API Gateway to your Kubernetes cluster, review the required fields for rerouting HTTP requests, and troubleshoot an error message.
|
|
---
|
|
|
|
# Error Messages
|
|
|
|
This topic provides information about potential error messages associated with Consul API Gateway. If you receive an error message that does not appear in this section, refer to the following resources:
|
|
|
|
- [Common Consul errors](/docs/troubleshoot/common-errors#common-errors-on-kubernetes)
|
|
- [Consul troubleshooting guide](/docs/troubleshoot/common-errors)
|
|
- [Consul Discuss forum](https://discuss.hashicorp.com/)
|
|
|
|
<!---
|
|
***************************************************************************
|
|
Use markdown's Reference-Style links when including hyperlinks. This makes it easier to read the content im markdown.
|
|
|
|
Each common error should have its own section on this page. Each section
|
|
should start with a heading line that is a short description of the error or
|
|
the text of the error.
|
|
|
|
Two examples:
|
|
### Failed opening file during installation
|
|
### Message: "Can't connect to repository" when running Helm chart
|
|
|
|
******** Template for new Error Messages ********
|
|
Copy and paste the following 13 lines when adding a new error message to this page.
|
|
|
|
### Title for this error
|
|
|
|
```
|
|
Replace with text of example error message
|
|
```
|
|
**Conditions:**
|
|
REPLACE THIS with description of when and why the error is typically seen
|
|
|
|
**Impact:**
|
|
REPLACE THIS with description of most likely impact of the event that caused this error to occur
|
|
|
|
**Resolution:**
|
|
REPLACE THIS with the actions the user should take to try to correct the situation
|
|
|
|
***************************************************************************
|
|
--->
|
|
|
|
## Helm installation failed: "no matches for kind"
|
|
|
|
```log
|
|
Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: [unable to recognize "": no matches for kind "GatewayClass" in version "gateway.networking.k8s.io/v1alpha2", unable to recognize "": no matches for kind "GatewayClassConfig" in version "api-gateway.consul.hashicorp.com/v1alpha1"]
|
|
```
|
|
**Conditions:**
|
|
Consul API Gateway generates this error when the required CRD files have not been installed in Kubernetes prior to installing Consul API Gateway.
|
|
|
|
**Impact:**
|
|
The installation process typically fails after this error message is generated.
|
|
|
|
**Resolution:**
|
|
Install the required CRDs. Refer to the [Consul API Gateway installation instructions](/docs/api-gateway/install#installation) for instructions. |