End of Sale Notice:

Commercial support for NGINX Service Mesh is available to customers who currently have active NGINX Microservices Bundle subscriptions. F5 NGINX announced the End of Sale (EoS) for the NGINX Microservices Bundles as of July 1, 2023.

See our End of Sale announcement for more details.

Release Notes 0.6.0

Release information for NGINX Service Mesh, a configurable, low‑latency infrastructure layer designed to handle a high volume of network‑based interprocess communication among application infrastructure services using application programming interfaces (APIs). Lists of new features and known issues are provided.

NGINX Service Mesh Version 0.6.0

These release notes provide general information and describe known issues for NGINX Service Mesh version 0.6.0, in the following categories:

Updates

NGINX Service Mesh 0.6.0 includes the following updates:

  • None

Resolved Issues

This release includes fixes for the following issues.

  • Maximum number of pods and services (10492)

  • Mixed resource types metrics limitation (11168)

  • Terminating nginx-meshctl prematurely during deploy can prevent proper cleanup (16916)

Known Issues

The following issues are known to be present in this release. Look for updates to these issues in future NGINX Service Mesh release notes.

NGINX Service Mesh does not support apps/v1beta1 (10258):

When injecting configurations – nginx-meshctl inject – using apiVersion: apps/v1beta1, the sidecar injection fails silently, and no new configuration is written.


Workaround:

The apps/v1beta1 API version is not supported. Retry the injection using the proper version: apps/v1.

Command line tool may timeout connecting to control plane (10685):

The nginx-meshctl tool requires the NGINX Service Mesh control plane to be available and ready for operations to succeed. During startup or network outages, connections may time out and fail.


Workaround:

Wait until all services report that they’re ready and you can connect to the cluster, then retry the command.

Non-injected pods and services mishandled as fallback services (14731):

We do not recommend using non-injected pods with a fallback service. Unless the non-injected fallback service is created following the proper order of operations, the service may not be recognized and updated in the circuit breaker flow.

Instead, we recommend using injected pods and services for service mesh injected workloads.


Workaround:

If you must use non-injected workloads, you need to configure the fallback service and pods before the Circuit Breaker CRD references them.

Kubernetes Liveness and Readiness HTTP Requests fail when mtls-mode is strict (17038):

Kubernetes Liveness and Readiness HTTP Requests fail when mtls-mode is strict.


Workaround:

  1. Use commands instead of HTTP requests when defining liveness and readiness probes.
  2. Deploy NGINX Service Mesh with a permissive mtls mode. A permissive mode allows the liveness and readiness HTTP requests to be proxied to the application over plaintext.
  3. Create dedicated ports for the liveness and readiness probes in your application and add these ports to the ignore-incoming-ports during injection. Dedicated ports allow the HTTP requests to hit the application directly without being proxied.

Warning messages emitted when traffic access policies applied (17117):

After successfully configuring traffic access polices (TrafficTarget, HTTPRouteGroup, TCPRoute), warning messages may be emitted to the nginx-mesh-sidecar logs.

For example:

2020/09/24 01:03:14 could not parse syslog message: nginx could not connect to upstream

This warning message is harmless and can safely be ignored. The message does not indicate an operational problem.

HTTPRouteGroups are not validated for proper input (17153):

HTTPRouteGroups are not validated for proper input.

  1. You can have multiple matches with the same name, leading to undefined behavior.
  2. You can specify multiple pathRegex statements, also leading to undefined behavior.

Workaround:

When creating HTTPRouteGroups, ensure there are no duplicate matches with the same name or duplicate pathRegex statements.

Traffic sent to backend service if root service and destination backend services don’t match (17156):

When configuring Traffic Splitting, the port on the root service and the port on every destination backend service must match. Backend services with a mismatching port should not be sent traffic. With this release, the mismatch case is not caught, and traffic is sent to that backend service.


Workaround:

Ensure ports on the root service and destination backend service match.

NGINX Service Mesh remove command may fail (17160):

In some cases, the NGINX Service Mesh remove command may fail for unexpected reasons due to environmental, network, or timeout errors. If the remove command fails continually, manual intervention may be necessary.


Workaround:

When troubleshooting, first verify that the command is run correctly with the correct arguments and that the target namespace exists.

If you are running the command correctly and the target namespace exists and is not empty – that is to say, the NGINX Service Mesh Deployments, Pods, Services, and so on, have been deployed – you may need to remove the NGINX Service Mesh namespace and start over:

To remove the NGINX Service mesh namespace and start over:

  1. Run the following command to delete the nginx-mesh namespace:

    kubectl delete namespace nginx-mesh
    

    Note: This command should appear to stall. You can run kubectl get namespaces in a separate terminal to view the status, which should display as “Terminating.”

  2. In a separate terminal, list and set a variable for all spiffeid resources:

    SPIFFEIDS=$(kubectl -n <namespace> get spiffeids | grep -v NAME | awk '{print $1}')
    
  3. Remove finalizers from each spiffeid resource:

    kubectl patch spiffeid $SPIFFEIDS --type='merge' -p '{"metadata":{"finalizers":null}}' -n <namespace>
    

    After step 3 completes, the command from step 1 should also complete, and the namespace should be removed.

  4. Run nginx-meshctl deploy and allow the operation to finish.

Improper destination and source namespace defaults for TrafficTarget (17234):

If the TrafficTarget .spec does not explicitly set namespaces, access control may be applied to unexpected resources. The TrafficTarget .spec.destination.namespace and .spec.sources[*].namespace will default to the default namespace regardless of the namespace of the TrafficTarget resource.


Workaround:

When defining TrafficTarget resources, always explicitly set the destination and source namespaces.

For example:

kind: TrafficTarget
metadata:
  name: example-traffictarget
  namespace: example-namespace
spec:
  destination:
    kind: ServiceAccount
    name: example-destination-sa
    namespace: example-namespace
  sources:
  - kind: ServiceAccount
    name: example-source-sa
    namespace: example-namespace



Removing Mesh could delete clusterrole/binding for custom Prometheus (17302):

When removing Mesh, if a custom Prometheus deployment has a clusterrole/binding named “prometheus”, the clusterrole/binding is deleted.


Workaround:

Avoid using “prometheus” as a name for the clusterrole/binding for custom Prometheus deployments.

TrafficSplits cannot route traffic based on the value of the host header (17304):

A TrafficSplit can list an HTTPRouteGroup in spec.Matches. If this HTTPRouteGroup contains a host header in the header filters, the TrafficSplit will not work. The root service of the TrafficSplit will handle the traffic.

Namespaces stuck deleting after removing NGINX Service Mesh (17313):

After attempting to removing the NGINX Service Mesh, namespaces may get stuck deleting. Resource finalizers can deadlock a namespace when the owning controller is unavailable. Spire, and in turn NGINX Service Mesh, use finalizers in the spiffe.spire.io custom resource definitions. If your namespace cannot be deleted or is stuck in the “Terminating” state for a long time, you may need to remove the problematic finalizers.


Workaround:

To clear the deadlock by removing finalizers, run the following command:

SPIFFEIDS=$(kubectl -n <namespace> get spiffeids | grep -v NAME | awk '{print $1}')

Remove finalizers from each spiffeid resource:

kubectl patch spiffeid $SPIFFEIDS --type='merge' -p '{"metadata":{"finalizers":null}}' -n <namespace>



nginx-meshctl erroneously shows out of namespace resources (17381):

When running nginx-mestctl top namespace/[namespace], resources from outside the requested namespace may appear. This may happen whether or not cross-namespace traffic is occurring.


Workaround:

There is no direct workaround for specific namespace filtering; however, running nginx-meshctl and filtering on other supported resources–such as Deployments, Pods, StatefulSets, and DaemonSets–will show proper traffic edges. Cross-referencing between Namespace output and another resource type will demonstrate the correct activity.

Warning messages may print while deploying the NGINX Service Mesh on EKS (17390):

The warning message “Unable to cancel request for *exec.roundTripper” may print when deploying NGINX Service Mesh on EKS. This warning message does not prevent the mesh from deploying successfully.

Supported Versions

SMI Specification:

  • Traffic Access: v1alpha2
  • Traffic Metrics: v1alpha1 (in progress, supported resources: StatefulSets, Namespaces, Deployments, Pods, DaemonSets)
  • Traffic Specs: v1alpha3
  • Traffic Split: v1alpha3

NGINX Service Mesh SMI Extensions:

  • Traffic Specs: v1alpha1