Support Lifetime
Only the most recent Tyk Operator release is supported. We recommend staying current to minimise exposure to security vulnerabilities from third party dependencies.1.5 Release Notes
1.5.0 Release Notes
Release Date 23 September 2026
Release Highlights
This release delivers a major expansion of GitOps coverage for Tyk Dashboard resources, along with a first release of API Governance support and several reliability improvements. Full declarative management of Tyk Dashboard resources Tyk Operator now manages several new Kubernetes Custom Resources, closing key gaps that previously prevented full programmatic control of Tyk Dashboard configuration and required manual Dashboard configuration or ad hoc Kubernetes Jobs calling the Admin API:TykSession: Client access control and tracking Session.TykCertificate: TLS certificate, with automatic reconciliation when the underlying Kubernetes Secret is rotated by tools like cert-manager or Vault.TykIdentityProfile: Tyk Identity Broker (TIB) profile for Dashboard Single Sign-On.TykOAuthClient: OAuth 2.0 client used with Tyk OAuth 2.0 authentication method.TykWebhook: Webhook handler for Gateway events.TykUserGroup: Dashboard user groupsWhile user groups can now be defined declaratively, individual Dashboard user accounts are not managed via CRDs and continue to be configured through the Dashboard API or UI.
TykRuleset CRD lets you declare Spectral-based governance rulesets as Kubernetes resources (inline or referencing a ConfigMap/Secret), and Tyk OAS API definitions applied through the Operator can now be evaluated against active rulesets, including an admission webhook that can deny a non-compliant kubectl apply outright.
For a comprehensive list of changes, please refer to the detailed changelog below.
Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.Downloads
- Docker image v1.5.0
-
- Helm chart
Changelog
Changed
Updated to Go 1.26
Updated to Go 1.26
Added
Added TykRuleset CRD for declarative Governance ruleset management
Added TykRuleset CRD for declarative Governance ruleset management
TykRuleset custom resource lets you declare Tyk’s API Governance rulesets, Spectral-based rules that lint your Tyk OAS APIs for compliance, as Kubernetes resources, instead of managing them only through the Dashboard. The ruleset’s category list, action (none/warn/block), active state, and Spectral rule body can all be version-controlled and rolled back through Git.
The Spectral rule body can be supplied inline in the resource, or via a reference to a ConfigMap or Secret, letting large or sensitive rulesets live outside the CR. The Operator keeps the ruleset in sync with the Dashboard as the resource or its referenced object changes.For more information, visit Governance via OperatorAdded admission webhook and reconcile-time Governance evaluation for Tyk OAS APIs
Added admission webhook and reconcile-time Governance evaluation for Tyk OAS APIs
TykRuleset above). A Kubernetes admission webhook can deny a kubectl apply outright when a matching ruleset with the block action has error-level findings, showing up to five violations inline; a ruleset with the warn action instead admits the object with an inline warning.
Separately, the reconciler evaluates the same rulesets and records the outcome on status.governancePreflight and as a Kubernetes Event, purely for visibility; it never blocks or withholds the Dashboard sync based on a governance result.Evaluation is opt-in: it only runs when an API’s categories intersect an active TykRuleset’s categories, and results are cached against a hash of the OpenAPI document plus the matched ruleset set, so unrelated changes don’t trigger repeat evaluation calls.For more information, visit Governance via OperatorAdded TykSession CRD for declarative management of Sessions
Added TykSession CRD for declarative management of Sessions
TykSession custom resource lets you declare Sessions for API client credentials, such as API tokens and HTTP Basic Auth users, as Kubernetes resources. The Operator creates, updates, and revokes the corresponding Session in the Gateway as the resource changes.
Policies associated with the Session (declared using the existing SecurityPolicy CRD) are referenced by their Kubernetes metadata.name, consistent with the Operator’s existing cross-resource reference model, so no raw Tyk IDs are needed in the manifest.Added TykCertificate CRD for declarative TLS certificate management
Added TykCertificate CRD for declarative TLS certificate management
TykCertificate custom resource uploads a TLS certificate from a same-namespace Kubernetes Secret into Tyk Certificate Store. The resulting certificate ID, fingerprint, and expiry are exposed on .status.
The certificate ID is deterministic, so re-applying an unchanged resource is a no-op. Deleting the resource checks whether any API still depends on the certificate before removing it, so a certificate shared across multiple APIs is never deleted out from under them.Added automatic reconciliation for externally rotated certificates and basic auth passwords
Added automatic reconciliation for externally rotated certificates and basic auth passwords
TykCertificate or Basic Auth TykSession resource is rotated by an external system such as cert-manager or Vault, and reconciles the change automatically without needing a manual edit to trigger a sync.
For certificates, a rotated Secret produces a new certificate in Tyk, uploaded before the old one is removed, and the old certificate is only cleaned up once nothing still depends on it, so a live API is never left pointing at a missing certificate.For Basic Auth passwords, rotation updates the credential in place in the same Session object, so quota and rate-limit counters are preserved.Added TykIdentityProfile CRD for declarative TIB profile management
Added TykIdentityProfile CRD for declarative TIB profile management
TykIdentityProfile custom resource lets you declare Tyk Identity Broker (TIB) profiles, which broker external identity providers for SSO into Tyk Dashboard, as Kubernetes resources.
A profile is owned by either the Operator or the Dashboard, never both: an Operator-managed profile is authoritative, and any manual Dashboard edit is treated as drift and overwritten on the next reconcile, while a profile already created in the Dashboard is left alone unless explicitly annotated for the Operator to adopt it.Provider secrets in the profile configuration can be supplied as a reference to a same-namespace Kubernetes Secret rather than inline; the resolved value is sent to Tyk but never stored in the resource’s status, logs, or events, and rotating the referenced Secret automatically re-triggers reconciliation.Added TykOAuthClient CRD for declarative Tyk OAuth 2.0 client management
Added TykOAuthClient CRD for declarative Tyk OAuth 2.0 client management
TykOAuthClient custom resource lets you declare OAuth 2.0 clients bound to a specific Tyk OAuth 2.0 enabled API as Kubernetes resources. A client can be created with a specific client_id/client_secret supplied via a Kubernetes Secret, or left for Tyk to generate; a Tyk-generated client_secret is written to an Operator-owned Secret and never exposed in the resource’s status, logs, or events.Added TykWebhook CRD for declarative webhook management
Added TykWebhook CRD for declarative webhook management
TykWebhook custom resource lets you declare global webhooks that can be triggered by Gateway events as Kubernetes resources. Header values can reference a same-namespace Kubernetes Secret instead of being set inline, so credentials sent to the webhook target are never stored in the resource’s status, logs, or events; rotating the referenced Secret automatically re-syncs the webhook.Added TykUserGroup CRD for declarative Dashboard user group management
Added TykUserGroup CRD for declarative Dashboard user group management
TykUserGroup custom resource lets you declare Dashboard user groups, the permission sets referenced by Dashboard users, TIB profiles, and Tyk OAS API ownership, as Kubernetes resources.Added reconcile status and error reporting to the SecurityPolicy resource
Added reconcile status and error reporting to the SecurityPolicy resource
SecurityPolicy resources now expose a status.latestTransaction field, matching the reconcile-status pattern already available on API definition resources. A failed Policy sync, an invalid Dashboard call or a missing linked API, is now visible directly on the resource via kubectl get securitypolicy, not just in the Operator’s logs. A transient Kubernetes conflict encountered while writing the status no longer causes a spurious “Failed” state to be reported.API ownership is now applied for Tyk OAS APIs
API ownership is now applied for Tyk OAS APIs
OperatorContext to Tyk OAS APIs. user_owners and user_group_owners are applied on create and update, and updating these fields on an OperatorContext reconciles every Tyk OAS API that references it, keeping ownership consistent between Kubernetes and the Dashboard.Security Fixes
Resolved CVEs
Resolved CVEs
1.4 Release Notes
1.4.2 Release Notes
Release Date 9 July 2026
Release Highlights
In this release, we have fixed issues with the reliability of SecurityPolicy reconciliation under high load that could lead to infinite reconciliation loops, orphaned Dashboard policies, and inconsistent state between Kubernetes and Dashboard. The fix also introduces new configuration options that enable tuning of Tyk Operator’s HTTP connection pool for different deployments. For a comprehensive list of changes, please refer to the detailed changelog below.Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.Downloads
- Docker image v1.4.2
-
- Helm chart
Changelog
Fixed
Fix SecurityPolicy reconciliation race conditions and connection leaks under load
Fix SecurityPolicy reconciliation race conditions and connection leaks under load
SecurityPolicy resources from reconciling reliably, particularly under high load or when a policy referenced a large number of APIs.Affected Operators could enter continuous reconciliation loops (most commonly with policies referencing nine or more APIs), leave a policy in the Dashboard after its Kubernetes resource had been deleted, repeatedly try to recreate a policy and fail with a “policy name already used” error, and steadily leak HTTP connections and file descriptors until the host exhausted its available ports.SecurityPolicy reconciliation is now idempotent and converges reliably: Kubernetes and Dashboard state stay consistent across create, update, and delete, the Operator recovers cleanly from partial failures, and HTTP connections are reused correctly so file descriptors no longer accumulate under sustained load. The same reconciliation improvements have been applied to Tyk OAS API definition resources.This release also introduces a set of environment variables for tuning the Operator’s HTTP client to the Dashboard: TYK_OPERATOR_HTTPCLIENTCONFIG_MAXIDLECONNS, TYK_OPERATOR_HTTPCLIENTCONFIG_MAXIDLECONNSPERHOST, TYK_OPERATOR_HTTPCLIENTCONFIG_MAXCONNSPERHOST, TYK_OPERATOR_HTTPCLIENTCONFIG_IDLECONNTIMEOUT, TYK_OPERATOR_HTTPCLIENTCONFIG_TLSHANDSHAKETIMEOUT, and TYK_OPERATOR_HTTPCLIENTCONFIG_TIMEOUT. Each ships with a sensible built-in default, and Tyk recommends leaving them unchanged unless your infrastructure has specific constraints, such as file descriptor exhaustion, that require tuning.Security Fixes
Resolved CVEs
Resolved CVEs
- CVE-2026-33814
- CVE-2026-39830
- CVE-2026-39831
- CVE-2026-39833
- CVE-2026-42508
- CVE-2026-46595
- CVE-2026-39821
- CVE-2026-39829
- CVE-2026-42504
- CVE-2026-39832
- CVE-2026-39834
- CVE-2026-46597
- CVE-2026-25680
- CVE-2026-25681
- CVE-2026-27136
- CVE-2026-39827
- CVE-2026-39828
- CVE-2026-39835
- CVE-2026-42502
- CVE-2026-42506
- CVE-2026-46598
- CVE-2026-42507
- CVE-2026-27145
- CVE-2026-39824
1.4.1 Release Notes
Release Date 21 May 2026
Release Highlights
In this release, we have addressed CVEs for enhanced security and performance. For a comprehensive list of changes, please refer to the detailed changelog below.Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.Downloads
- Docker image v1.4.1
-
- Helm chart
Changelog
Security Fixes
Resolved CVEs
Resolved CVEs
1.4.0 Release Notes
Release Date 20 May 2026
Release Highlights
Tyk Operator 1.4.0 introduces support for managing MCP (Model Context Protocol) Proxy definitions through Kubernetes custom resources. The newTykMcpProxyDefinition CRD allows you to manage MCP Proxies declaratively, and the SecurityPolicy CRD has been extended with MCP access rights for tool-based access control and per-primitive rate limiting.
For a comprehensive list of changes, please refer to the detailed changelog.
Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
The MCP Proxy support in Tyk Operator 1.4.0 requires Tyk Gateway 5.13.0 and Tyk Dashboard 5.13.0 (or newer) Attempting to useTykMcpProxyDefinition resources with Operator 1.4.0 prior to upgrading Gateway and Dashboard to a version supporting MCP Proxies will cause reconciliation failures.
See MCP Gateway upgrade considerations for details.
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.
Downloads
- Docker image v1.4.0
-
- Helm chart
Changelog
Added
Add MCP Proxy support
Add MCP Proxy support
TykMcpProxyDefinition CRD allows you to manage MCP Proxy definitions declaratively in Kubernetes.The CRD status surface exposes three hashes — CRDSpecHash, ConfigMapHash, and TykSpecHash — to track synchronisation state between the Kubernetes resource, the ConfigMap, and the Tyk Gateway definition.SecurityPolicy CRD — MCP access rightsThe SecurityPolicy CRD has been extended to support MCP-specific access rights:- Per-tool, per-resource, and per-prompt allow/deny lists (
mcp_access_rights) - Per-JSON-RPC-method allow/deny lists (
json_rpc_methods_access_rights) - Per-primitive rate limits (
mcp_primitives) and per-method rate limits (json_rpc_methods)
1.3 Release Notes
1.3.0 Release Notes
Release Date 11 March 2026
Release Highlights
Tyk Operator v1.3.0 delivers improvements for API monitoring and ingress management in Kubernetes environments. This release adds native uptime test configuration support for both Tyk OAS and Tyk Classic API definitions, eliminating the need for manual Dashboard configuration. For a comprehensive list of changes, please refer to the detailed changelog below.Helm chart for Operator 1.3.0 contained an installation bug. Please ensure you use tyk-charts version 5.1.1 or later to install Operator 1.3.0.Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.Downloads
- Docker image v1.3.0
-
- Helm chart
Changelog
Changed
Golang 1.25 Update
Golang 1.25 Update
Added
Added Uptime Test Configuration Support
Added Uptime Test Configuration Support
Fixed
Tyk Operator Ingress Controller Now Respects Strip Listen Path Configuration
Tyk Operator Ingress Controller Now Respects Strip Listen Path Configuration
listenPath.strip configuration defined in your Tyk OAS API templates. This fix ensures that template configurations are preserved while maintaining backward compatibility, as templates without an explicit strip setting will continue to default to true, and ACME challenge paths will still force strip: false as required.1.2 Release Notes
1.2.0 Release Notes
Release Date 02 April 2025
Release Highlights
Support for Tyk 5.8
Tyk Operator v1.2 introduces key enhancements and critical fixes to improve API management in Kubernetes environments. This release adds support for HMAC request signing and YAML-based OAS definitions, aligning with Tyk Gateway 5.8. For a comprehensive list of changes, please refer to the detailed changelog below.Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Tyk Operator v1.2 introduced new Custom Resource Definitions (CRDs). Before upgrading to Tyk Operator v1.2 with Helm Chart, please run the following commands to install the CRDs:Downloads
- Docker image v1.2.0
-
- Helm chart
Changelog
Added
HMAC request signing support
HMAC request signing support
YAML-based OAS API definitions
YAML-based OAS API definitions
JWT OAS API policy linking
JWT OAS API policy linking
Updated
Fixed
Operator reconciliation error handling
Operator reconciliation error handling
Cert-manager dependency
Cert-manager dependency
Circuit breaker schema validation
Circuit breaker schema validation
threshold_precent field of classic API Definition CRD starting from Operator v1.0.0, which blocked users from upgrading.Portal API Catalog infinite loop
Portal API Catalog infinite loop
Leader election flag
Leader election flag
1.1 Release Notes
1.1.0 Release Notes
Release Date 09 December 2024
Release Highlights
Support for Tyk Streams API
Tyk Operator v1.1 supports management of Tyk Streams APIs through the newTykStreamsApiDefinition custom resource. This allows you to have declarative, versioned, and fully automated control to your streaming APIs.
Breaking Changes
This release has no breaking changes.Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Tyk Operator v1.1 introduced new Custom Resource Definitions (CRDs). Before upgrading to Tyk Operator v1.1 with Helm Chart, please run the following commands to install the CRDs:Downloads
- Docker image v1.1.0
-
- Helm chart
- tyk-charts v2.2.0
Changelog
Added
Fixed
1.0 Release Notes
1.0.0 Release Notes
We are excited to announce the release of Tyk Operator v1.0, marking a significant milestone with new features, enhancements, and critical changes. This release introduces support for Tyk OAS APIs, extended capabilities for managing Classic APIs and security policies, and includes license changes that you must be aware of before upgrading.Release Date 10 Oct 2024
Release Highlights
Support for Tyk OAS API
The Tyk Operator v1.0 release introduces powerful new features designed to enhance how you manage APIs in Kubernetes environments. One of the key highlights is the full support for Tyk OAS APIs, allowing you to define and manage APIs through the newTykOasApiDefinition custom resource. This integration extends GitOps API Management to Tyk OAS, allowing you to have declarative, versioned, and fully automated control to your APIs in Kubernetes environments.
Key features:
- Define and Manage Tyk OAS APIs using the TykOasApiDefinition custom resource.
- Manage API Definitions in ConfigMaps: Any changes are automatically tracked and synced to Tyk.
- Configure Tyk OAS in a Kubernetes-native way: You can organize APIs by categories or manage multiple API versions easily with the new CRD.
- Simplify certificate management by referencing Kubernetes secrets.
- Use the Tyk Ingress controller to create Tyk OAS APIs from Ingress specs.
Enhanced Classic API and Security Policy Features
Enhanced support for Tyk Classic APIs continues, with improvements to security policies and new capabilities for setting API and endpoint-specific rate limits, making it easier than ever to customize API usage policies. This release represents a significant upgrade for both API management and security, offering a more efficient, scalable, and Kubernetes-native way to operate Tyk. Whether you’re leveraging Tyk OAS APIs or continuing with Tyk Classic, this version brings the tools and features you need to streamline your workflows and enhance operational efficiency. For details please refer to the changelog below.Breaking Changes
License Requirement: Tyk Operator is now a closed-source product and requires a valid license key to operate. Please follow our Installation and Upgrade Guide to set your license key before installation or upgrade. If the license is missing, invalid, or expired, Tyk Operator will exit with an error message. Ensure that you carefully review the setup steps to avoid any issues during the upgrade or installation process. Admission Webhook Removal: The admission webhook for security policy (validate-tyk-tyk-io-v1alpha1-securitypolicy) has been removed. No action is required from users, and existing SecurityPolicy CRDs and resources remain fully supported and unaffected.
Dependencies
3rd Party Dependencies & Tools
Deprecations
There are no deprecations in this release.Upgrade instructions
Tyk Operator v1.0 introduced new Custom Resource Definitions (CRDs). Before upgrading to Tyk Operator v1.0 with Helm Chart, please run the following commands to install the CRDs:Downloads
- Docker image v1.0.0
-
- Helm chart
Changelog
Added
TykOasApiDefinition: new Custom Resource for Tyk OAS
TykOasApiDefinition: new Custom Resource for Tyk OAS
TykOasApiDefinition custom resource allows you to manage Tyk OAS APIs directly within your Kubernetes environment. You can now categorize APIs, manage multiple versions, and simplify SSL certificate management by referencing Kubernetes secrets. This enhancement offers a Kubernetes-native approach to managing Tyk APIs, streamlining operations and reducing the complexity of versioning and certificate handling across different environments.Learn More: Create Tyk OAS APIIngress Controller: Support Tyk OAS API as an Ingress Template
Ingress Controller: Support Tyk OAS API as an Ingress Template
SecurityPolicy: Support for Key-Level Per-API Rate Limits and Quota
SecurityPolicy: Support for Key-Level Per-API Rate Limits and Quota
access_rights_array in the security policy. Each API now has the flexibility to inherit global limit settings or apply custom limits, making it easier to control API usage on a per-API basis. This provides enhanced granularity in managing traffic, ensuring optimal resource allocation and improved performance under heavy loads.Learn More: Key-Level Per-API Rate Limits and QuotaSecurityPolicy: Support for Key-Level Per-Endpoint Rate Limits
SecurityPolicy: Support for Key-Level Per-Endpoint Rate Limits
SecurityPolicy: Support for TykOasApiDefinition
SecurityPolicy: Support for TykOasApiDefinition
access_rights_array, allowing you to manage security policies for both Tyk Classic APIs and Tyk OAS APIs. By specifying the API kind, you can now apply rate limits, quotas, and other access controls to Tyk OAS APIs, streamlining security management in mixed environments.Learn More: TykOasApiDefinition in Security PolicyApiDefinition: Support for Event Handler
ApiDefinition: Support for Event Handler
ApiDefinition: Support timeout Field in Advanced Cache Control
ApiDefinition: Support timeout Field in Advanced Cache Control
ApiDefinition: Support new Fields in VersionDefinition
ApiDefinition: Support new Fields in VersionDefinition
VersionDefinition within ApiDefinition has been expanded to include additional fields, offering more granular control over API versioning and path management. These new fields allow you to configure version handling more flexibly, enhancing your ability to manage API versions and customize how version data is processed in API paths.Changed
0.18 Release Notes
0.18.0 Release Notes
Release date 4 Jul 2024
Breaking Changes
This release has no breaking changes.Deprecations
There are no deprecations in this release.Upgrade Instructions
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.Release Highlights
This release added support for Tyk 5.4 API definition. For details please refer to the changelog below.Downloads
- Docker image v0.18.0
-
- Source code tarball - Tyk Operator Repo
Changelog
Added
0.17 Release Notes
0.17.1 Release Notes
Release date 6 May 2024
Breaking Changes
This release has no breaking changes.Deprecations
There are no deprecations in this release.Upgrade Instructions
Go to the Upgrading Tyk Operator section for detailed upgrade instructions.Release Highlights
This release is focused on bug fixes. For details please refer to the changelog below.Downloads
- Docker image v0.17
-
- Source code tarball - Tyk Operator Repo
Changelog
Fixed
Fixed ApiDefinition Custom Resources generated by the Ingress Controller used a wrong certificate
Fixed ApiDefinition Custom Resources generated by the Ingress Controller used a wrong certificate
Added Webhook and RBAC port configurations in Tyk Operator Helm chart
Added Webhook and RBAC port configurations in Tyk Operator Helm chart
.Values.webhookPort and .Values.rbac.port respectively.Addressed security vulnerabilities CVE-2023-45288
Addressed security vulnerabilities CVE-2023-45288
Addressed security vulnerabilities CVE-2024-24786
Addressed security vulnerabilities CVE-2024-24786
protojson.Unmarshal function can enter an infinite loop when unmarshaling certain forms of invalid JSON. This condition can occur when unmarshaling into a message which contains a google.protobuf.Any value, or when the UnmarshalOptions.DiscardUnknown option is set.0.17.0 Release Notes
Release date 05 Apr 2024
Breaking Changes
This release has no breaking changes.Deprecations
There are no deprecations in this release.Upgrade Instructions
Go to the Upgrading Tyk Operator section for detailed upgrade Instructions.Release Highlights
This release added support forGraphQLIntrospectionConfig in API definition and fixed an issue where the Tyk Operator creates duplicate APIs on Tyk.
For details please refer to the changelog below.
Downloads
- Docker image v0.17
-
- Source code tarball - Tyk Operator Repo
Changelog
Fixed
Added
0.16 Release Notes
0.16.0 Release Notes
Release date 12 Jan 2024
Breaking Changes
This release has no breaking changes.Deprecations
There are no deprecations in this release.Upgrade Instructions
While upgrading Tyk Operator release via Helm, please make sure that the latest CRDs are also applied on the cluster, as follows:Release Highlights
This release added support for analytics plugin, UDG global header, and detailed tracing setting in ApiDefinition as detailed in the changelog below.Downloads
Changelog
Added
Added imagePullSecrets configuration for ServiceAccount in Tyk Operator Helm chart
Added imagePullSecrets configuration for ServiceAccount in Tyk Operator Helm chart
Added tyk to categories field of CRDs
Added tyk to categories field of CRDs
Added support of analytics plugin in ApiDefinition CRD
Added support of analytics plugin in ApiDefinition CRD
Added support of UDG Global Header in ApiDefinition CRD
Added support of UDG Global Header in ApiDefinition CRD
Added support of detail tracing in ApiDefinition CRD
Added support of detail tracing in ApiDefinition CRD