Kubernetes Managed
Visualize Kubernetes resources and monitor changes through queries and alerts.
- Installation
- Data Model
- Types
Installation
Prerequisites
Before installing the Kubernetes Managed integration, you must have a Kubernetes collector running. For instructions on setting up the Kubernetes collector, see the Kubernetes collector documentation.
- Web
- Helm
Configuration in JupiterOne
-
Navigate to the Integrations tab in JupiterOne and select Kubernetes Managed.
-
Click New Instance to begin configuring your integration and provide the following:
-
The Account Name used to identify the Kubernetes account in JupiterOne. Ingested entities will have this value stored in
tag.AccountNamewhen theAccountNametoggle is enabled. -
Description to assist in identifying the integration instance, if desired.
-
When prompted about where should this run, select the Kubernetes collector you created in the prerequisites.
-
-
Click Create after all values are provided and your instance appears in the list of all your Kubernetes Managed instances.
Helm
The Helm-based install is for users that would like their integrations managed via Kubernetes resources.
- Ensure you have the repository set up and updated
helm repo add jupiterone https://jupiterone.github.io/helm-charts
helm repo update
- Find the name of your runner. The integration needs to know the name of the runner.
kubectl get integrationrunner -n jupiterone
Output
NAME STATE DETAIL REGISTRATION AGE
runner running registered 162m
- Configuration Options
Values:
collectorName- (Default "runner"). This is the name of the Runner/Collector you installed as part of the Kubernetes Operator installation.includeNamespaces- An array of namespace names to include. If specified, only these namespaces will be ingested.excludeNamespaces- An array of namespace names to exclude from ingestion.crdMappingConfig- Path to a YAML file containing the CRD mapping configuration (see Advanced: Configuring Custom Resource Definitions section below).pollingInterval- (Default ONE_WEEK). Specifies how often the integration runs to collect data. Options:- DISABLED
- THIRTY_MINUTES
- ONE_HOUR
- FOUR_HOURS
- EIGHT_HOURS
- TWELVE_HOURS
- ONE_DAY
- ONE_WEEK
pollingIntervalCron- (Default disabled). If setting this field, set pollingInterval to DISABLED. This option has two fields:houranddayOfWeek. Example:--set pollingInterval=DISABLED --set pollingIntervalCron.hour=2 --set pollingIntervalCron.dayOfWeek=0
For a complete list of configuration options, run:
helm show values jupiterone/kubernetes-managed
- Install the Managed Kubernetes Helm chart Add in your configuration options from above into this command:
helm install kubernetes jupiterone/kubernetes-managed -n jupiterone --set collectorName=<runnerName>
- Verify Installation Check that the integration was successfully installed and registered with JupiterOne:
kubectl get integrationinstance -n jupiterone
Output
NAME READY REASON AGE
kubernetes True Success 176m
RBAC
The Kubernetes collector installs with a ClusterRole that provides read-only access to Kubernetes resources. The collector has permissions to get, list, and watch the following:
Core Resources:
- Pods, namespaces, service accounts, config maps, nodes, services, secrets, and events
Application Workloads:
- Deployments, replica sets, stateful sets, daemon sets, jobs, and cron jobs
Networking:
- Ingresses and network policies
RBAC and Security:
- Cluster roles, cluster role bindings, roles, and role bindings
- Self-subject access reviews and subject access reviews
- Token reviews
Extensions:
- All resources in the extensions API group
Integration Management:
- Integration instance jobs, integration runners, and their status and finalizers (for managing integration workloads)
All permissions are read-only (get, list, watch) and do not allow modification of any cluster resources.
Advanced: Configuring Custom Resource Definitions (CRDs)
By default, the Kubernetes Managed integration ingests standard Kubernetes resources. However, you can extend the integration to also collect and map Custom Resource Definitions (CRDs) that exist in your cluster. This is particularly useful for capturing custom resources created by operators, such as IntegrationRunners and IntegrationInstanceJobs from the JupiterOne Kubernetes Operator.
Overview
The CRD configuration allows you to:
- Define which custom resources to ingest: Specify the CRD resources you want to collect from your cluster
- Map resource properties: Transform CRD fields into JupiterOne entity properties
- Create relationships: Define how custom resources relate to other entities in your JupiterOne graph
Configuration File Structure
The CRD configuration is defined in a YAML file with two main sections: resources and relationships. This configuration file can be provided when setting up your integration instance.
Resources Section
The resources section defines which custom resources to ingest and how to map their properties to JupiterOne entities.
Each resource entry contains:
-
name(required): The fully qualified name of the CRD resource type, following the format<plural>.<group>. For example,integrationrunners.integrations.jupiterone.iorefers to theIntegrationRunnerCRD in theintegrations.jupiterone.ioAPI group. -
version(optional): The API version of the resource. For example,v1indicates the resource uses version 1 of the API. If not provided, all versions will be ingested. -
_type(required): The entity type that will be assigned to ingested resources in JupiterOne. This is a custom identifier that you'll use to query and reference these entities. It should follow the patternkube_cr_<resource_name>(e.g.,kube_cr_integration_runner). -
_class(required): The entity class that categorizes the resource in JupiterOne's data model. All supported entity classes can be found in the JupiterOne Data Model documentation. -
propertyToFieldMap(required): A mapping that defines how fields from the Kubernetes resource are transformed into JupiterOne entity properties. This is where you specify which Kubernetes resource fields map to which JupiterOne properties._key(required): Maps to the unique identifier for the entity in JupiterOne. It's recommended to usemetadata.uidto ensure uniqueness.- Standard properties: Common mappings include:
name: Usually maps tometadata.namenamespace: Usually maps tometadata.namespacecreatedOn: Usually maps tometadata.creationTimestamp
- Custom properties: You can map any field from the resource's
specorstatussections to custom properties. For example,accountId: spec.accountIdmaps theaccountIdfield from the resource's spec to a property calledaccountIdon the JupiterOne entity.
Relationships Section
The relationships section defines how custom resources relate to other entities in your JupiterOne graph. This allows you to create meaningful connections between resources, such as showing which secrets an IntegrationRunner uses or which runner an IntegrationInstanceJob runs on.
Each relationship entry contains:
-
_class(required): The type of relationship. All supported relationship classes can be found in the JupiterOne Data Model repository. -
sourceType(required): The entity type of the source entity in the relationship. This should match the_typeyou defined in the resources section (e.g.,kube_cr_integration_runner). -
targetType(required): The entity type of the target entity in the relationship. This can be:- Another custom resource type you've defined (e.g.,
kube_cr_integration_instance_job) - A standard Kubernetes resource type (e.g.,
kube_secret,kube_pod,kube_namespace)
- Another custom resource type you've defined (e.g.,
-
matchBy(required): Defines how to match the source and target entities to create the relationship. This is a key-value mapping where:- The key is a property name on the source entity (e.g.,
secretName) - The value is a property name on the target entity (e.g.,
name)
The relationship is created when the source entity's property value matches the target entity's property value. You can specify multiple match conditions, and all must be satisfied (AND logic). For example:
matchBy:
secretName: name
namespace: namespaceThis creates a relationship when both the
secretNameon the source matches thenameon the target, AND thenamespaceon the source matches thenamespaceon the target.noteIf a property is not defined for either the source or the target, the relationship won't be created. Undefined doesn't match with undefined.
- The key is a property name on the source entity (e.g.,
Example Configuration
Here's a complete example configuration that ingests IntegrationRunners and IntegrationInstanceJobs and creates relationships between them and their associated secrets:
resources:
- name: integrationrunners.integrations.jupiterone.io
version: v1
_type: kube_cr_integration_runner
_class: Process
propertyToFieldMap:
_key: metadata.uid
name: metadata.name
namespace: metadata.namespace
createdOn: metadata.creationTimestamp
accountId: spec.accountId
collectorId: spec.collectorId
collectorPoolId: spec.collectorPoolId
jupiterOneEnvironment: spec.jupiterOneEnvironment
secretAPITokenName: spec.secretAPITokenName
secretName: spec.secretName
syncIntervalSeconds: spec.syncIntervalSeconds
- name: integrationinstancejobs.integrations.jupiterone.io
_type: kube_cr_integration_instance_job
_class: Task
propertyToFieldMap:
_key: metadata.uid
name: metadata.name
namespace: metadata.namespace
createdOn: metadata.creationTimestamp
accountId: spec.accountId
certificateIdentity: spec.certificateIdentity
image: spec.image
integrationDefinitionName: spec.integrationDefinitionName
integrationInstanceId: spec.integrationInstanceId
integrationInstanceJobId: spec.integrationInstanceJobId
integrationRunnerName: spec.integrationRunnerName
secretName: spec.secretName
relationships:
- _class: HAS
sourceType: kube_cr_integration_runner
targetType: kube_secret
matchBy:
secretName: name
namespace: namespace
- _class: HAS
sourceType: kube_cr_integration_instance_job
targetType: kube_secret
matchBy:
secretName: name
namespace: namespace
- _class: HAS
sourceType: kube_cr_integration_instance_job
targetType: kube_cr_integration_runner
matchBy:
integrationRunnerName: name
namespace: namespace
Understanding the Example
Resources Explained:
-
IntegrationRunner Resource:
- Ingested as
kube_cr_integration_runnerentities with classProcess - Maps standard Kubernetes metadata (uid, name, namespace, creationTimestamp)
- Maps custom spec fields like
accountId,collectorId, andsyncIntervalSecondsto entity properties - The
secretNameproperty is used later to create relationships with secrets
- Ingested as
-
IntegrationInstanceJob Resource:
- Ingested as
kube_cr_integration_instance_jobentities with classTask - Similar metadata mapping
- Maps job-specific fields like
integrationInstanceId,image, andintegrationRunnerName - The
integrationRunnerNameproperty links jobs to their runners
- Ingested as
Relationships Explained:
-
IntegrationRunner → Secret:
- Creates a
HASrelationship from each IntegrationRunner to the secret it uses - Matches when the runner's
secretNameequals the secret'snameAND they're in the samenamespace
- Creates a
-
IntegrationInstanceJob → Secret:
- Creates a
HASrelationship from each IntegrationInstanceJob to its associated secret - Uses the same matching logic as above
- Creates a
-
IntegrationInstanceJob → IntegrationRunner:
- Creates a
HASrelationship showing which runner executes each job - Matches when the job's
integrationRunnerNameequals the runner'snameAND they're in the samenamespace
- Creates a
Next steps
Now that your integration instance has been configured, it will begin running on the polling interval you provided, populating data within JupiterOne. Continue on to our Instance management guide to learn more about working with and editing integration instances.
Entities
The following entities are created:
| Resources | Entity _type | Entity _class |
|---|---|---|
| Kubernetes Certificate Signing Request | kube_certificate_signing_request | Certificate |
| Kubernetes Cluster | kube_cluster | Cluster |
| Kubernetes Cluster Role | kube_cluster_role | AccessRole |
| Kubernetes Cluster Role Binding | kube_cluster_role_binding | AccessPolicy |
| Kubernetes ConfigMap | kube_config_map | Configuration |
| Kubernetes Container | kube_container | Container |
| Kubernetes CronJob | kube_cron_job | Task |
| Kubernetes DaemonSet | kube_daemon_set | Deployment |
| Kubernetes Deployment | kube_deployment | Deployment |
| Kubernetes Image | kube_image | Image |
| Kubernetes Ingress | kube_ingress | Gateway |
| Kubernetes Job | kube_job | Task |
| Kubernetes Namespace | kube_namespace | Group |
| Kubernetes Network Policy | kube_network_policy | Configuration |
| Kubernetes Node | kube_node | Host |
| Kubernetes Pod | kube_pod | Task |
| Kubernetes ReplicaSet | kube_replica_set | Deployment |
| Kubernetes Role | kube_role | AccessRole |
| Kubernetes Role Binding | kube_role_binding | AccessPolicy |
| Kubernetes Role Rule | kube_role_rule | Rule |
| Kubernetes Secret | kube_secret | Secret |
| Kubernetes Service | kube_service | Service |
| Kubernetes Service Account | kube_service_account | User |
| Kubernetes StatefulSet | kube_stateful_set | Deployment |
| Kubernetes User | kube_user | User |
| Kubernetes Volume | kube_volume | Disk |
Relationships
The following relationships are created:
Source Entity _type | Relationship _class | Target Entity _type |
|---|---|---|
kube_cluster | CONTAINS | kube_node |
kube_cluster | CONTAINS | kube_namespace |
kube_cluster | CONTAINS | kube_cluster_role |
kube_cluster | CONTAINS | kube_cluster_role_binding |
kube_cluster | CONTAINS | kube_user |
kube_cluster | CONTAINS | kube_certificate_signing_request |
kube_cluster | CONTAINS | ANY_RESOURCE |
kube_cluster_role | ASSIGNED | kube_role_binding |
kube_cluster_role | ASSIGNED | kube_cluster_role_binding |
kube_cluster_role_binding | ASSIGNED | kube_service_account |
kube_container | CONTAINS | kube_pod |
kube_container | USES | kube_secret |
kube_container | USES | kube_config_map |
kube_container | USES | kube_volume |
kube_container | USES | kube_image |
kube_cron_job | MANAGES | kube_job |
kube_daemon_set | MANAGES | kube_pod |
kube_deployment | MANAGES | kube_replica_set |
kube_ingress | CONNECTS | kube_service |
kube_job | CONTAINS | kube_namespace |
kube_job | MANAGES | kube_pod |
kube_namespace | CONTAINS | kube_role |
kube_namespace | CONTAINS | kube_role_binding |
kube_namespace | CONTAINS | kube_cron_job |
kube_namespace | CONTAINS | kube_daemon_set |
kube_namespace | CONTAINS | kube_config_map |
kube_namespace | CONTAINS | kube_secret |
kube_namespace | CONTAINS | kube_deployment |
kube_namespace | CONTAINS | kube_replica_set |
kube_namespace | CONTAINS | kube_network_policy |
kube_namespace | CONTAINS | kube_ingress |
kube_namespace | CONTAINS | kube_service |
kube_namespace | CONTAINS | ANY_RESOURCE |
kube_node | CONTAINS | kube_pod |
kube_pod | CONTAINS | kube_namespace |
kube_pod | USES | kube_service_account |
kube_pod | USES | kube_secret |
kube_pod | USES | kube_volume |
kube_pod | HAS | kube_certificate_signing_request |
kube_replica_set | MANAGES | kube_pod |
kube_role | ENFORCES | kube_role_rule |
kube_role | ASSIGNED | kube_role_binding |
kube_role_binding | ASSIGNED | kube_service_account |
kube_service | CONNECTS | kube_pod |
kube_service_account | CONTAINS | kube_namespace |
kube_stateful_set | CONTAINS | kube_namespace |
kube_stateful_set | MANAGES | kube_pod |
kube_volume | USES | kube_config_map |
Mapped Relationships
The following mapped relationships are created:
Source Entity _type | Relationship _class | Target Entity _type | Direction |
|---|---|---|---|
kube_cluster | IS | azure_kubernetes_cluster | FORWARD |
kube_cluster | IS | google_container_cluster | FORWARD |
kube_cluster | IS | aws_eks_cluster | FORWARD |
Kube Certificate Signing Request
kube_certificate_signing_request inherits from Certificate
| Property | Type | Description | Specifications |
|---|---|---|---|
groups | array of strings | ||
signerName | string | ||
status.lastUpdatedOn | number | ||
status.message | string | ||
status.reason | string | ||
status.type | string | ||
subject.commonName | string | ||
subject.dnsSAN | array of strings | ||
subject.organization | string | ||
uid * | string | ||
usages | array of strings | ||
userId | string | ||
username | string |
Kube Cluster
kube_cluster inherits from Cluster
| Property | Type | Description | Specifications |
|---|---|---|---|
server * | string | ||
skipTlsVerify * | boolean |
Kube Cluster Role
kube_cluster_role inherits from AccessRole
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
kind | string | ||
namespace | string | ||
resourceVersion | string |
Kube Cluster Role Binding
kube_cluster_role_binding inherits from AccessPolicy
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
kind | string | ||
namespace | string | ||
resourceVersion | string |
Kube Config Map
kube_config_map inherits from Configuration
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
binaryDataKeys | array of strings | ||
dataKeys | array of strings | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
immutable | boolean | ||
kind | string | ||
namespace | string | ||
resourceVersion | string |
Kube Container
kube_container inherits from Container
| Property | Type | Description | Specifications |
|---|---|---|---|
allowPrivilegeEscalation | boolean | ||
appArmorProfile.localhostProfile | string | ||
appArmorProfile.type | string | ||
args | array of strings | ||
command | array of strings | ||
containerId | string | ||
cpuLimit | string | ||
cpuRequest | string | ||
finishedAt | number | ||
hasStarted | boolean | ||
image | string | ||
imagePullPolicy | string | ||
isReady | boolean | ||
isUsingEnvironmentVariableSecrets | boolean | ||
memoryLimit | string | ||
memoryRequest | string | ||
namespace | string | ||
normalizedCpuLimit | number | ||
normalizedCpuRequest | number | ||
normalizedMemoryLimit | number | ||
normalizedMemoryRequest | number | ||
podUid | string | ||
privileged | boolean | ||
procMount | string | ||
readOnlyRoolFilesystem | boolean | ||
restartCount | number | ||
runAsGroup | number | ||
runAsNonRoot | boolean | ||
runAsUser | number | ||
running | boolean | ||
seccompProfile.localhostProfile | string | ||
seccompProfile.type | string | ||
seLinuxOptions.level | string | ||
seLinuxOptions.role | string | ||
seLinuxOptions.type | string | ||
seLinuxOptions.user | string | ||
startedAt | number | ||
terminated | boolean | ||
terminatedExitCode | number | ||
terminationMessagePath | string | ||
terminationMessagePolicy | string | ||
type | string | ||
waiting | boolean | ||
waitingMessage | string | ||
waitingReason | string | ||
windowsOptions.gmsaCredentialSpec | string | ||
windowsOptions.gmsaCredentialSpecName | string | ||
windowsOptions.hostProcess | boolean | ||
windowsOptions.runAsUserName | string |
Kube Cron Job
kube_cron_job inherits from Task
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
concurrencyPolicy | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
failedJobsHistoryLimit | number | ||
kind | string | ||
lastScheduledOn | number | ||
lastSuccessfulOn | number | ||
namespace | string | ||
resourceVersion | string | ||
schedule | string | ||
startingDeadlineSeconds | number | ||
successfulJobsHistoryLimit | number | ||
suspend | boolean | ||
timeZone | string |
Kube Daemon Set
kube_daemon_set inherits from Deployment
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
collisionCount | number | ||
currentNumberScheduled | number | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
desiredNumberScheduled | number | ||
kind | string | ||
minReadySeconds | number | ||
namespace | string | ||
numberAvailable | number | ||
numberMisscheduled | number | ||
numberReady | number | ||
numberUnavailable | number | ||
observedGeneration | number | ||
resourceVersion | string | ||
revisionHistoryLimit | number | ||
updatedNumberScheduled | number | ||
updateStrategyType | string |
Kube Deployment
kube_deployment inherits from Deployment
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
availableReplicas | number | ||
collisionCount | number | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
kind | string | ||
minReadySeconds | number | ||
namespace | string | ||
observedGeneration | number | ||
paused | boolean | ||
progressDeadlineSeconds | number | ||
readyReplicas | number | ||
replicas | number | ||
resourceVersion | string | ||
revisionHistoryLimit | number | ||
statusReplicas | number | ||
strategyType | string | ||
unavailableReplicas | number | ||
updatedReplicas | number |
Kube Image
kube_image inherits from Image
| Property | Type | Description | Specifications |
|---|---|---|---|
digest | string | ||
imageId | string |
Kube Ingress
kube_ingress inherits from Gateway
| Property | Type | Description | Specifications |
|---|---|---|---|
category * | array of strings | ||
deletionOn | number | ||
finalizers | array of strings | ||
function * | array of strings | ||
generation | number | ||
hasDefaultBackend | boolean | ||
hosts | array of strings | ||
ingressClassName | string | ||
namespace | string | ||
paths | array of strings | ||
public * | boolean | ||
resourceVersion | string | ||
status.loadBalancer.ingress | array of strings | ||
tlsEnabled | boolean | ||
tlsHosts | array of strings | ||
tlsSecretNames | array of strings |
Kube Job
kube_job inherits from Task
| Property | Type | Description | Specifications |
|---|---|---|---|
activeDeadlineSeconds | number | ||
backoffLimit | number | ||
completions | number | ||
createdOn | number | ||
deletedOn | number | ||
deletionGracePeriodSeconds | number | ||
generation | number | ||
manualSelector | boolean | ||
namespace | string | ||
parallelism | number | ||
resourceVersion | string | ||
status.active | number | ||
status.completionTime | number | ||
status.failed | number | ||
status.startTime | number | ||
status.succeeded | number | ||
ttlSecondsAfterFinished | number |
Kube Namespace
kube_namespace inherits from Group
| Property | Type | Description | Specifications |
|---|---|---|---|
createdOn | number | ||
deletionGracePeriodSeconds | number | ||
finalizers | array of strings | ||
generation | number | ||
ownerNames | array of strings | ||
resourceVersion | string | ||
status.phase | string |
Kube Network Policy
kube_network_policy inherits from Configuration
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
kind | string | ||
namespace | string | ||
podSelectorMatchExpressions | string | ||
policyTypes | array of strings | ||
resourceVersion | string |
Kube Node
kube_node inherits from Host
| Property | Type | Description | Specifications |
|---|---|---|---|
architecture | string | ||
capacity.cpu | string | ||
capacity.memory | string | ||
capacity.pods | string | ||
containerRuntimeVersion | string | ||
kernelVersion | string | ||
kubeletVersion | string | ||
operatingSystem | string | ||
osImage | string | ||
providerID | string | ||
unschedulable * | boolean |
Kube Pod
kube_pod inherits from Task
| Property | Type | Description | Specifications |
|---|---|---|---|
activeDeadlineSeconds | number | ||
automountServiceAccountToken | boolean | ||
cpuLimit | string | ||
cpuRequest | string | ||
deletionGracePeriodSeconds | number | ||
dnsPolicy | string | ||
enableServiceLinks | boolean | ||
finalizers | array of strings | ||
generation | number | ||
hasSecurityContext | boolean | ||
hostIPC | boolean | ||
hostname | string | ||
hostNetwork | boolean | ||
hostPID | boolean | ||
imagePullSecrets | array of strings | ||
memoryLimit | string | ||
memoryRequest | string | ||
namespace | string | ||
nodeName | string | ||
normalizedCpuLimit | number | ||
normalizedCpuRequest | number | ||
normalizedMemoryLimit | number | ||
normalizedMemoryRequest | number | ||
podAnnotations | array of strings | ||
preemptionPolicy | string | ||
priority | number | ||
priorityClassName | string | ||
resourceVersion | string | ||
restartPolicy | string | ||
runtimeClassName | string | ||
schedulerName | string | ||
securityContext.apparmorProfile.localhostProfile | string | ||
securityContext.apparmorProfile.type | string | ||
securityContext.fsGroup | number | ||
securityContext.fsGroupChangePolicy | string | ||
securityContext.runAsGroup | number | ||
securityContext.runAsNonRoot | boolean | ||
securityContext.runAsUser | number | ||
securityContext.seccompProfile.localhostProfile | string | ||
securityContext.seccompProfile.type | string | ||
securityContext.seLinuxChangePolicy | string | ||
securityContext.seLinuxOptions.level | string | ||
securityContext.seLinuxOptions.role | string | ||
securityContext.seLinuxOptions.type | string | ||
securityContext.seLinuxOptions.user | string | ||
securityContext.supplementalGroups | array of numbers | ||
securityContext.supplementalGroupsPolicy | string | ||
securityContext.sysctls | array of strings | ||
securityContext.windowsOptions.gmsaCredentialSpec | string | ||
securityContext.windowsOptions.gmsaCredentialSpecName | string | ||
securityContext.windowsOptions.hostProcess | boolean | ||
securityContext.windowsOptions.runAsUserName | string | ||
serviceAccount | string | ||
serviceAccountName | string | ||
setHostnameAsFQDN | boolean | ||
shareProcessNamespace | boolean | ||
status.hostIP | string | ||
status.hostIPs | array of strings | ||
status.message | string | ||
status.nominatedNodeName | string | ||
status.phase | string | ||
status.podIP | string | ||
status.podIPs | array of strings | ||
status.qosClass | string | ||
status.reason | string | ||
status.startTime | number | ||
subdomain | string | ||
terminationGracePeriodSeconds | number |
Kube Replica Set
kube_replica_set inherits from Deployment
| Property | Type | Description | Specifications |
|---|---|---|---|
annotations | array of strings | ||
apiVersion | string | ||
currentSize | number | ||
desiredSize | number | ||
generation | number | ||
kind | string | ||
labels | array of strings | ||
minReadySeconds | number | ||
namespace | string | ||
ownerReferences | array of strings | ||
resourceVersion | string | ||
selector | string | ||
status.availableReplicas | number | ||
status.fullyLabeledReplicas | number | ||
status.observedGeneration | number | ||
status.readyReplicas | number |
Kube Role
kube_role inherits from AccessRole
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
kind | string | ||
namespace * | string | ||
resourceVersion | string |
Kube Role Binding
kube_role_binding inherits from AccessPolicy
| Property | Type | Description | Specifications |
|---|---|---|---|
admin | boolean | ||
apiVersion | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
kind | string | ||
namespace * | string | ||
resourceVersion | string | ||
roleRefApiGroup | string | ||
roleRefKind | string | ||
roleRefName | string | ||
subjectCount | number | ||
subjects | array of strings |
Kube Role Rule
kube_role_rule inherits from Rule
| Property | Type | Description | Specifications |
|---|---|---|---|
apiGroups | array of strings | ||
namespace | string | ||
resourceNames | array of strings | ||
resources | array of strings | ||
verbs * | array of strings |
Kube Secret
kube_secret inherits from Secret
| Property | Type | Description | Specifications |
|---|---|---|---|
apiVersion | string | ||
deletionGracePeriodSeconds | number | ||
deletionOn | number | ||
immutable | boolean | ||
kind | string | ||
namespace | string | ||
resourceVersion | string | ||
type | string |
Kube Service
kube_service inherits from Service
| Property | Type | Description | Specifications |
|---|---|---|---|
allocateLoadBalancerNodePorts | boolean | ||
category * | array of strings | ||
clusterIP | string | ||
clusterIPs | array of strings | ||
deletionGracePeriodSeconds | number | ||
endpoints | array of strings | ||
externalIPs | array of strings | ||
externalName | string | ||
externalTrafficPolicy | string | ||
function * | array of strings | ||
healthCheckNodePort | number | ||
ipFamilies | array of strings | ||
ipFamilyPolicy | string | ||
loadBalancerIP | string | ||
loadBalancerSourceRanges | array of strings | ||
namespace | string | ||
portName | array of strings | ||
portNumber | array of numbers | ||
protocol | array of strings | ||
publishNotReadyAddresses | boolean | ||
resourceVersion | string | ||
selectors | array of strings | ||
sessionAffinity | string | ||
targetPort | array of strings | ||
type | string |
Kube Service Account
kube_service_account inherits from User
| Property | Type | Description | Specifications |
|---|---|---|---|
deletionGracePeriodSeconds | integer | ||
generation | integer | ||
namespace | string | ||
resourceVersion | string | ||
secretIds | array of strings | ||
secretNames | array of strings |
Kube Stateful Set
kube_stateful_set inherits from Deployment
| Property | Type | Description | Specifications |
|---|---|---|---|
deletionGracePeriodSeconds | number | ||
generation | number | ||
namespace | string | ||
podManagementPolicy | string | ||
replicas | number | ||
resourceVersion | string | ||
revisionHistoryLimit | number | ||
serviceName | string | ||
status.collisionCount | number | ||
status.currentReplicas | number | ||
status.currentRevision | string | ||
status.observedGeneration | number | ||
status.readyReplicas | number | ||
status.replicas | number | ||
status.updatedReplicas | number | ||
status.updateRevision | string | ||
strategy.partition | number | ||
strategy.type | string |
Kube User
kube_user inherits from User
| Property | Type | Description | Specifications |
|---|---|---|---|
certFile | string | ||
keyFile | string |
Kube Volume
kube_volume inherits from Disk
| Property | Type | Description | Specifications |
|---|---|---|---|
awsVolumeID | string | ||
azureDiskName | string | ||
azureDiskURI | string | ||
claimName | string | ||
configMapName | string | ||
csiDriver | string | ||
csiFsType | string | ||
csiReadOnly | boolean | ||
emptyDirMedium | string | ||
emptyDirSizeLimit | string | ||
gcePdName | string | ||
hostPath | string | ||
hostPathType | string | ||
namespace | string | ||
nfsPath | string | ||
nfsServer | string | ||
readOnly | boolean | ||
secretName | string | ||
volumeName * | string | ||
volumeType * | string |