An API Service is an abstraction which defines for locating and communicating with servers.
resource "kubernetes_api_service" "example" {
metadata {
name = "terraform-example"
}
spec {
selector {
app = "${kubernetes_pod.example.metadata.0.labels.app}"
}
session_affinity = "ClientIP"
port {
port = 8080
target_port = 80
}
type = "LoadBalancer"
}
}
The following arguments are supported:
metadata
- (Required) Standard API service's metadata. For more info see Kubernetes referencespec
- (Required) Spec contains information for locating and communicating with a server. Kubernetes referencemetadata
annotations
- (Optional) An unstructured key value map stored with the API service that may be used to store arbitrary metadata.generate_name
- (Optional) Prefix, used by the server, to generate a unique name ONLY IF the name
field has not been provided. This value will also be combined with a unique suffix. For more info see Kubernetes referencelabels
- (Optional) Map of string keys and values that can be used to organize and categorize (scope and select) the API service.name
- (Optional) Name of the API service, must be unique. Cannot be updated. For more info see Kubernetes referencegeneration
- A sequence number representing a specific generation of the desired state.resource_version
- An opaque value that represents the internal version of this API service that can be used by clients to determine when API service has changed. For more info see Kubernetes referenceuid
- The unique in time and space value for this API service. For more info see Kubernetes referencespec
ca_bundle
- (Optional) CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.group
- (Required) Group is the API group name this server hosts.group_priority_minimum
- (Required) GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s.insecure_skip_tls_verify
- (Required) InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.service
- (Optional) Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled. See service
block attributes below.version
- (Required) Version is the API version this server hosts. For example, v1
.version_priority
- (Required) VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is kube-like
, it will sort above non kube-like
version strings, which are ordered lexicographically. Kube-like
versions start with a v
, then are followed by a number (the major version), then optionally the string alpha
or beta
and another number (the minor version). These are sorted first by GA > beta
> alpha
(where GA is a version with no suffix such as beta
or alpha
), and then by comparing major version, then minor version. An example sorted list of versions: v10
, v2
, v1
, v11beta2
, v10beta3
, v3beta1
, v12alpha1
, v11alpha2
, foo1
, foo10
..service
name
- (Required) Name is the name of the service.namespace
- (Required) Namespace is the namespace of the service.port
- (Optional) If specified, the port on the service that is hosting the service. Defaults to 443 for backward compatibility. Should be a valid port number (1-65535, inclusive).API service can be imported using its name, e.g.
$ terraform import kubernetes_api_service.example v1.terraform-name.k8s.io