Issues when creating an APIRule - Various reasons

Symptom

When you create an APIRule, an instant validation error appears, or the APIRule custom resource (CR) has the ERROR status, for example:

Click to copy
kubectl get apirule httpbin
NAME STATUS HOST
httpbin ERROR httpbin.xxx.shoot.canary.k8s-hana.ondemand.com

The error may result in an inconsistent state of the APIRule resource in which Ory CR, Istio CR, or both are missing. Your service then cannot be properly exposed. To check the error message of the APIRule resource, run:

Click to copy
kubectl get apirule -n <namespace> <api-rule-name> -o=jsonpath='{.status.APIRuleStatus}'

JWT handler's trusted_issuers configuration is missing

Cause

The following APIRule is missing the trusted_issuers configuration for the JWT handler:

Click to copy
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: jwt

If your APIRule is missing the trusted_issuers configuration for the JWT handler, the following APIRuleStatus error appears:

Click to copy
{"code":"ERROR","desc":"Validation error: Attribute \".spec.rules[0].accessStrategies[0].config\": supplied config cannot be empty"}

Remedy

Add JWT configuration for the trusted_issuers or . Here's an example of a valid configuration:

Click to copy
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: jwt
config:
trusted_issuers: ["https://dev.kyma.local"]

Invalid trusted_issuers for the JWT handler

Cause

Here's an example of an APIRule with the trusted_issuers URL configured:

Click to copy
cat <<EOF | kubectl apply -f -
apiVersion: gateway.kyma-project.io/v1beta1
kind: APIRule
metadata:
...
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: jwt
config:
trusted_issuers: ["http://unsecured.or.not.valid.url"]
EOF

If the trusted_issuers URL is an unsecured HTTP URL, or the trusted_issuers URL is not valid, you get an instant error, and the APIRule resource is not created:

Click to copy
The APIRule "httpbin" is invalid: spec.rules[0].accessStrategies[0].config.trusted_issuers[0]: Invalid value: "some-url": spec.rules[0].accessStrategies[0].config.trusted_issuers[0] in body should match '^(https://|file://).*$'

Remedy

The JWT trusted-issuers must be a valid HTTPS URL, for example:

Click to copy
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: jwt
config:
trusted_issuers: ["https://dev.kyma.local"]

Unsupported handlers' combination

Cause

The following APIRule has both allow and jwt handlers defined on the same path:

Click to copy
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: allow
- handler: jwt
config:
trusted_issuers: ["https://dev.kyma.local"]

The handlers' combination in the above example is not supported. If an APIRule has an unsupported handlers' combination defined on the same path, the following APIRuleStatus error appears:

Click to copy
{"code":"ERROR","desc":"Validation error: Attribute \".spec.rules[0].accessStrategies.accessStrategies[0].handler\": allow access strategy is not allowed in combination with other access strategies"}

Remedy

Decide on one configuration you want to use. You can either allow access to the specific path or restrict it using the JWT security token. Defining both configuration methods on the same path is not allowed.


Service defined in APIRule is on the block list

Cause

The following APIRule has the istio-ingressgateway service specified:

Click to copy
spec:
...
service:
name: istio-ingressgateway
namespace: istio-system

The istio-ingressgateway service is included in the block list. If your APIRule has a blocked service defined, the following APIRuleStatus error appears:

Click to copy
{"code":"ERROR","desc":"Validation error: Attribute \".spec.service.name\": Service istio-ingressgateway in namespace istio-system is blocklisted"}

Remedy

Read this technical reference to learn more about the block list of services in API Gateway.

To see which services are blocked in Kyma by default, check the serviceBlockList.


Occupied host

Cause

The following APIRules use the same host:

Click to copy
spec:
...
spec:
host: httpbin.xxx.shoot.canary.k8s-hana.ondemand.com

If your APIRule specifies a host that is already used by another APIRule or Virtual Service, the following APIRuleStatus error appears:

Click to copy
{"code":"ERROR","desc":"Validation error: Attribute \".spec.host\": This host is occupied by another Virtual Service"}

Remedy

Use a different host for the second APIRule, for example:

Click to copy
spec:
...
host: httpbin-new.xxx.shoot.canary.k8s-hana.ondemand.com

Configuration of noop and allow handlers

Cause

In the following APIRule, the noop handler has the trusted-issuers field configured:

Click to copy
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: noop
config:
trusted_issuers: ["https://dex.kyma.local"]

If your APIRule uses either the noop or allow handler and has some further handler's configuration defined, you get the following APIRuleStatus error:

Click to copy
{"code":"ERROR","desc":"Validation error: Attribute \".spec.rules[0].accessStrategies[0].config\": strategy: noop does not support configuration"}

Remedy

Use the noop and allow handlers without any further configuration, for example:

Click to copy
spec:
...
rules:
- path: /.*
methods: ["GET"]
accessStrategies:
- handler: noop