Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The Open Service Mesh (OSM) add-on integrates with features provided by Azure and some open source projects.
Important
Integrations with open source projects aren't covered by the AKS support policy.
Ingress
Ingress allows for traffic external to the mesh to be routed to services within the mesh. With OSM, you can configure most ingress solutions to work with your mesh, but OSM works best with one of the following solutions:
Note
At this time, Azure Gateway Ingress Controller (AGIC) only works for HTTP backends. If you configure OSM to use AGIC, AGIC won't be used for other backends, such as HTTPS and mTLS.
Use the Azure Gateway Ingress Controller (AGIC) with the OSM add-on for HTTP ingress
Important
You can't configure Azure Gateway Ingress Controller (AGIC) for HTTPS ingress.
Create a namespace and deploy the application service
Installing the AGIC ingress controller.
Create a namespace for the application service using the
kubectl create nscommand.kubectl create ns httpbinAdd the namespace to the mesh using the
osm namespace addOSM CLI command.osm namespace add httpbinDeploy the application service to the namespace using the
kubectl applycommand.export RELEASE_BRANCH=release-v1.2 kubectl apply -f https://raw.githubusercontent.com/openservicemesh/osm-docs/$RELEASE_BRANCH/manifests/samples/httpbin/httpbin.yaml -n httpbinVerify the pods are up and running and have the envoy sidecar injected using the
kubectl get podscommand.kubectl get pods -n httpbinYour output should look similar to the following example output:
NAME READY STATUS RESTARTS AGE httpbin-7c6464475-9wrr8 2/2 Running 0 6d20hList the details of the service using the
kubectl get svccommand.kubectl get svc -n httpbinYour output should look similar to the following example output:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE httpbin ClusterIP 10.0.92.135 <none> 14001/TCP 6d20h
Deploy the ingress configurations and verify access to the application service
Deploy the following
IngressandIngressBackendconfigurations to allow external clients to access thehttpbinservice on port14001using thekubectl applycommand.kubectl apply -f <<EOF apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: httpbin namespace: httpbin annotations: kubernetes.io/ingress.class: azure/application-gateway spec: rules: - http: paths: - path: / pathType: Prefix backend: service: name: httpbin port: number: 14001 --- kind: IngressBackend apiVersion: policy.openservicemesh.io/v1alpha1 metadata: name: httpbin namespace: httpbin spec: backends: - name: httpbin port: number: 14001 # targetPort of httpbin service protocol: http sources: - kind: IPRange name: 10.0.0.0/8 EOFVerify the
Ingressobject was successfully deployed using thekubectl get ingresscommand and make note of the external IP address.kubectl get ingress -n httpbinYour output should look similar to the following example output:
NAME CLASS HOSTS ADDRESS PORTS AGE httpbin <none> * 20.85.173.179 80 6d20hVerify the
IngressBackendobject was successfully deployed using thekubectl get ingressbackendcommand.kubectl get ingressbackend -n httpbinYour output should look similar to the following example output:
NAME STATUS httpbin committedVerify you can access the
httpbinservice using the external IP address of the ingress service and the followingcurlcommand.curl -sI http://<external-ip>/getConfirm you receive a response with
status 200.
Metrics observability
Metrics observability allows you to view the metrics of your mesh and the deployments in your mesh. With OSM, you can use Prometheus and Grafana for metrics observability, but those integrations aren't covered by the AKS support policy.
You can also integrate OSM with Azure Monitor.
Before you can enable metrics on your mesh to integrate with Azure Monitor, make sure you have the following prerequisites:
- Enable Azure Monitor on your cluster.
- Enable the OSM add-on for your AKS cluster.
- Onboard your application namespaces to the mesh.
Enable metrics for a namespace in the mesh using the
osm metrics enablecommand.osm metrics enable --namespace myappnamespaceCreate a ConfigMap in the
kube-systemnamespace that enables Azure Monitor to monitor your namespaces. For example, create amonitor-configmap.yamlwith the following contents to monitor themyappnamespace:kind: ConfigMap apiVersion: v1 data: schema-version: v1 config-version: ver1 osm-metric-collection-configuration: |- # OSM metric collection settings [osm_metric_collection_configuration] [osm_metric_collection_configuration.settings] # Namespaces to monitor monitor_namespaces = ["myappnamespace"] metadata: name: container-azm-ms-osmconfig namespace: kube-systemApply the ConfigMap using the
kubectl applycommand.kubectl apply -f monitor-configmap.yamlNavigate to the Azure portal and select your AKS cluster.
Under Monitoring, select Logs.
In the Monitoring section, query the
InsightsMetricstable to view metrics in the enabled namespaces. For example, the following query shows the envoy metrics for the default namespace:InsightsMetrics | where Name contains "envoy" | extend t=parse_json(Tags) | where t.namespace == "default"
Automation and developer tools
OSM can integrate with certain automation projects and developer tooling to help operators and developers build and release applications. For example, OSM integrates with Flagger for progressive delivery and Dapr for building applications. The OSM integrations with Flagger and Dapr aren't covered by the AKS support policy.
External authorization
External authorization allows you to offload authorization of HTTP requests to an external service. OSM can use external authorization by integrating with Open Policy Agent (OPA), but that integration isn't covered by the AKS support policy.
Certificate management
OSM has several types of certificates it uses to operate on your AKS cluster. OSM includes its own certificate manager called Tresor, which is used by default. Alternatively, OSM allows you to integrate with Hashicorp Vault and cert-manager, but those integrations aren't covered by the AKS support policy.
Next steps
This article covered the Open Service Mesh (OSM) add-on integrations with features provided by Azure and some open source projects. To learn more about OSM, see About OSM in AKS.