mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
2084 lines
53 KiB
Markdown
2084 lines
53 KiB
Markdown
|
|
```sql
|
||
|
|
CREATE TABLE kubernetes_mutating_webhooks (
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`client_config` TEXT,
|
||
|
|
`rules` TEXT,
|
||
|
|
`failure_policy` TEXT,
|
||
|
|
`match_policy` TEXT,
|
||
|
|
`namespace_selector` TEXT,
|
||
|
|
`object_selector` TEXT,
|
||
|
|
`side_effects` TEXT,
|
||
|
|
`timeout_seconds` INTEGER,
|
||
|
|
`admission_review_versions` TEXT,
|
||
|
|
`reinvocation_policy` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_validating_webhooks (
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`client_config` TEXT,
|
||
|
|
`rules` TEXT,
|
||
|
|
`failure_policy` TEXT,
|
||
|
|
`match_policy` TEXT,
|
||
|
|
`namespace_selector` TEXT,
|
||
|
|
`object_selector` TEXT,
|
||
|
|
`side_effects` TEXT,
|
||
|
|
`timeout_seconds` INTEGER,
|
||
|
|
`admission_review_versions` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_daemon_sets (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`current_number_scheduled` INTEGER,
|
||
|
|
`number_misscheduled` INTEGER,
|
||
|
|
`desired_number_scheduled` INTEGER,
|
||
|
|
`number_ready` INTEGER,
|
||
|
|
`observed_generation` BIGINT,
|
||
|
|
`updated_number_scheduled` INTEGER,
|
||
|
|
`number_available` INTEGER,
|
||
|
|
`number_unavailable` INTEGER,
|
||
|
|
`collision_count` INTEGER,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`selector` TEXT,
|
||
|
|
`update_strategy` TEXT,
|
||
|
|
`min_ready_seconds` INTEGER,
|
||
|
|
`revision_history_limit` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_daemon_set_containers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`capabilities_add` TEXT,
|
||
|
|
`capabilities_drop` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`proc_mount` TEXT,
|
||
|
|
`target_container_name` TEXT,
|
||
|
|
`image` TEXT,
|
||
|
|
`command` TEXT,
|
||
|
|
`args` TEXT,
|
||
|
|
`working_dir` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`env_from` TEXT,
|
||
|
|
`env` TEXT,
|
||
|
|
`resource_limits` TEXT,
|
||
|
|
`resource_requests` TEXT,
|
||
|
|
`volume_mounts` TEXT,
|
||
|
|
`volume_devices` TEXT,
|
||
|
|
`liveness_probe` TEXT,
|
||
|
|
`readiness_probe` TEXT,
|
||
|
|
`startup_probe` TEXT,
|
||
|
|
`lifecycle` TEXT,
|
||
|
|
`termination_message_path` TEXT,
|
||
|
|
`termination_message_policy` TEXT,
|
||
|
|
`image_pull_policy` TEXT,
|
||
|
|
`stdin` INTEGER,
|
||
|
|
`stdin_once` INTEGER,
|
||
|
|
`tty` INTEGER,
|
||
|
|
`daemon_set_name` TEXT,
|
||
|
|
`container_type` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_daemon_set_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`empty_dir_medium` TEXT,
|
||
|
|
`empty_dir_size_limit` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`git_repo_repository` TEXT,
|
||
|
|
`git_repo_revision` TEXT,
|
||
|
|
`git_repo_directory` TEXT,
|
||
|
|
`secret_items` TEXT,
|
||
|
|
`secret_default_mode` INTEGER,
|
||
|
|
`secret_optional` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`persistent_volume_claim_name` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`downward_api_items` TEXT,
|
||
|
|
`downward_api_default_mode` INTEGER,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`config_map_name` TEXT,
|
||
|
|
`config_map_items` TEXT,
|
||
|
|
`config_map_default_mode` INTEGER,
|
||
|
|
`config_map_optional` INTEGER,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`projected_sources` TEXT,
|
||
|
|
`projected_default_mode` INTEGER,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT,
|
||
|
|
`ephemeral_volume_claim_template` TEXT,
|
||
|
|
`daemon_set_name` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_deployments (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`observed_generation` BIGINT,
|
||
|
|
`replicas` INTEGER,
|
||
|
|
`updated_replicas` INTEGER,
|
||
|
|
`ready_replicas` INTEGER,
|
||
|
|
`available_replicas` INTEGER,
|
||
|
|
`unavailable_replicas` INTEGER,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`collision_count` INTEGER,
|
||
|
|
`deployment_replicas` INTEGER,
|
||
|
|
`selector` TEXT,
|
||
|
|
`strategy` TEXT,
|
||
|
|
`min_ready_seconds` INTEGER,
|
||
|
|
`revision_history_limit` INTEGER,
|
||
|
|
`paused` INTEGER,
|
||
|
|
`progress_deadline_seconds` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_deployments_containers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`capabilities_add` TEXT,
|
||
|
|
`capabilities_drop` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`proc_mount` TEXT,
|
||
|
|
`target_container_name` TEXT,
|
||
|
|
`image` TEXT,
|
||
|
|
`command` TEXT,
|
||
|
|
`args` TEXT,
|
||
|
|
`working_dir` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`env_from` TEXT,
|
||
|
|
`env` TEXT,
|
||
|
|
`resource_limits` TEXT,
|
||
|
|
`resource_requests` TEXT,
|
||
|
|
`volume_mounts` TEXT,
|
||
|
|
`volume_devices` TEXT,
|
||
|
|
`liveness_probe` TEXT,
|
||
|
|
`readiness_probe` TEXT,
|
||
|
|
`startup_probe` TEXT,
|
||
|
|
`lifecycle` TEXT,
|
||
|
|
`termination_message_path` TEXT,
|
||
|
|
`termination_message_policy` TEXT,
|
||
|
|
`image_pull_policy` TEXT,
|
||
|
|
`stdin` INTEGER,
|
||
|
|
`stdin_once` INTEGER,
|
||
|
|
`tty` INTEGER,
|
||
|
|
`deployment_name` TEXT,
|
||
|
|
`container_type` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_deployments_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`empty_dir_medium` TEXT,
|
||
|
|
`empty_dir_size_limit` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`git_repo_repository` TEXT,
|
||
|
|
`git_repo_revision` TEXT,
|
||
|
|
`git_repo_directory` TEXT,
|
||
|
|
`secret_items` TEXT,
|
||
|
|
`secret_default_mode` INTEGER,
|
||
|
|
`secret_optional` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`persistent_volume_claim_name` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`downward_api_items` TEXT,
|
||
|
|
`downward_api_default_mode` INTEGER,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`config_map_name` TEXT,
|
||
|
|
`config_map_items` TEXT,
|
||
|
|
`config_map_default_mode` INTEGER,
|
||
|
|
`config_map_optional` INTEGER,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`projected_sources` TEXT,
|
||
|
|
`projected_default_mode` INTEGER,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT,
|
||
|
|
`ephemeral_volume_claim_template` TEXT,
|
||
|
|
`deployment_name` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_replica_sets (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`replicas` INTEGER,
|
||
|
|
`fully_labeled_replicas` INTEGER,
|
||
|
|
`ready_replicas` INTEGER,
|
||
|
|
`available_replicas` INTEGER,
|
||
|
|
`observed_generation` BIGINT,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`replica_set_replicas` INTEGER,
|
||
|
|
`min_ready_seconds` INTEGER,
|
||
|
|
`selector` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_replica_set_containers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`capabilities_add` TEXT,
|
||
|
|
`capabilities_drop` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`proc_mount` TEXT,
|
||
|
|
`target_container_name` TEXT,
|
||
|
|
`image` TEXT,
|
||
|
|
`command` TEXT,
|
||
|
|
`args` TEXT,
|
||
|
|
`working_dir` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`env_from` TEXT,
|
||
|
|
`env` TEXT,
|
||
|
|
`resource_limits` TEXT,
|
||
|
|
`resource_requests` TEXT,
|
||
|
|
`volume_mounts` TEXT,
|
||
|
|
`volume_devices` TEXT,
|
||
|
|
`liveness_probe` TEXT,
|
||
|
|
`readiness_probe` TEXT,
|
||
|
|
`startup_probe` TEXT,
|
||
|
|
`lifecycle` TEXT,
|
||
|
|
`termination_message_path` TEXT,
|
||
|
|
`termination_message_policy` TEXT,
|
||
|
|
`image_pull_policy` TEXT,
|
||
|
|
`stdin` INTEGER,
|
||
|
|
`stdin_once` INTEGER,
|
||
|
|
`tty` INTEGER,
|
||
|
|
`replica_set_name` TEXT,
|
||
|
|
`container_type` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_replica_set_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`empty_dir_medium` TEXT,
|
||
|
|
`empty_dir_size_limit` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`git_repo_repository` TEXT,
|
||
|
|
`git_repo_revision` TEXT,
|
||
|
|
`git_repo_directory` TEXT,
|
||
|
|
`secret_items` TEXT,
|
||
|
|
`secret_default_mode` INTEGER,
|
||
|
|
`secret_optional` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`persistent_volume_claim_name` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`downward_api_items` TEXT,
|
||
|
|
`downward_api_default_mode` INTEGER,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`config_map_name` TEXT,
|
||
|
|
`config_map_items` TEXT,
|
||
|
|
`config_map_default_mode` INTEGER,
|
||
|
|
`config_map_optional` INTEGER,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`projected_sources` TEXT,
|
||
|
|
`projected_default_mode` INTEGER,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT,
|
||
|
|
`ephemeral_volume_claim_template` TEXT,
|
||
|
|
`replica_set_name` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_stateful_sets (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`observed_generation` BIGINT,
|
||
|
|
`replicas` INTEGER,
|
||
|
|
`ready_replicas` INTEGER,
|
||
|
|
`current_replicas` INTEGER,
|
||
|
|
`updated_replicas` INTEGER,
|
||
|
|
`current_revision` TEXT,
|
||
|
|
`update_revision` TEXT,
|
||
|
|
`collision_count` INTEGER,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`available_replicas` INTEGER,
|
||
|
|
`stateful_set_replicas` INTEGER,
|
||
|
|
`selector` TEXT,
|
||
|
|
`volume_claim_templates` TEXT,
|
||
|
|
`service_name` TEXT,
|
||
|
|
`pod_management_policy` TEXT,
|
||
|
|
`update_strategy` TEXT,
|
||
|
|
`revision_history_limit` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_stateful_set_containers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`capabilities_add` TEXT,
|
||
|
|
`capabilities_drop` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`proc_mount` TEXT,
|
||
|
|
`target_container_name` TEXT,
|
||
|
|
`image` TEXT,
|
||
|
|
`command` TEXT,
|
||
|
|
`args` TEXT,
|
||
|
|
`working_dir` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`env_from` TEXT,
|
||
|
|
`env` TEXT,
|
||
|
|
`resource_limits` TEXT,
|
||
|
|
`resource_requests` TEXT,
|
||
|
|
`volume_mounts` TEXT,
|
||
|
|
`volume_devices` TEXT,
|
||
|
|
`liveness_probe` TEXT,
|
||
|
|
`readiness_probe` TEXT,
|
||
|
|
`startup_probe` TEXT,
|
||
|
|
`lifecycle` TEXT,
|
||
|
|
`termination_message_path` TEXT,
|
||
|
|
`termination_message_policy` TEXT,
|
||
|
|
`image_pull_policy` TEXT,
|
||
|
|
`stdin` INTEGER,
|
||
|
|
`stdin_once` INTEGER,
|
||
|
|
`tty` INTEGER,
|
||
|
|
`stateful_set_name` TEXT,
|
||
|
|
`container_type` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_stateful_set_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`empty_dir_medium` TEXT,
|
||
|
|
`empty_dir_size_limit` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`git_repo_repository` TEXT,
|
||
|
|
`git_repo_revision` TEXT,
|
||
|
|
`git_repo_directory` TEXT,
|
||
|
|
`secret_items` TEXT,
|
||
|
|
`secret_default_mode` INTEGER,
|
||
|
|
`secret_optional` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`persistent_volume_claim_name` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`downward_api_items` TEXT,
|
||
|
|
`downward_api_default_mode` INTEGER,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`config_map_name` TEXT,
|
||
|
|
`config_map_items` TEXT,
|
||
|
|
`config_map_default_mode` INTEGER,
|
||
|
|
`config_map_optional` INTEGER,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`projected_sources` TEXT,
|
||
|
|
`projected_default_mode` INTEGER,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT,
|
||
|
|
`ephemeral_volume_claim_template` TEXT,
|
||
|
|
`stateful_set_name` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_horizontal_pod_autoscalers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`scale_target_ref` TEXT,
|
||
|
|
`min_replicas` INTEGER,
|
||
|
|
`max_replicas` INTEGER,
|
||
|
|
`target_cpu_utilization_percentage` INTEGER,
|
||
|
|
`observed_generation` BIGINT,
|
||
|
|
`last_scale_time` BIGINT,
|
||
|
|
`current_replicas` INTEGER,
|
||
|
|
`desired_replicas` INTEGER,
|
||
|
|
`current_cpu_utilization_percentage` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_cron_jobs (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`active` TEXT,
|
||
|
|
`last_schedule_time` BIGINT,
|
||
|
|
`last_successful_time` BIGINT,
|
||
|
|
`schedule` TEXT,
|
||
|
|
`starting_deadline_seconds` BIGINT,
|
||
|
|
`concurrency_policy` TEXT,
|
||
|
|
`suspend` INTEGER,
|
||
|
|
`successful_jobs_history_limit` INTEGER,
|
||
|
|
`failed_jobs_history_limit` INTEGER,
|
||
|
|
`parallelism` INTEGER,
|
||
|
|
`completions` INTEGER,
|
||
|
|
`job_active_deadline_seconds` BIGINT,
|
||
|
|
`backoff_limit` INTEGER,
|
||
|
|
`selector` TEXT,
|
||
|
|
`manual_selector` INTEGER,
|
||
|
|
`ttl_seconds_after_finished` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_jobs (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`start_time` BIGINT,
|
||
|
|
`completion_time` BIGINT,
|
||
|
|
`active` INTEGER,
|
||
|
|
`succeeded` INTEGER,
|
||
|
|
`failed` INTEGER,
|
||
|
|
`completed_indexes` TEXT,
|
||
|
|
`uncounted_terminated_pods` TEXT,
|
||
|
|
`parallelism` INTEGER,
|
||
|
|
`completions` INTEGER,
|
||
|
|
`job_active_deadline_seconds` BIGINT,
|
||
|
|
`backoff_limit` INTEGER,
|
||
|
|
`selector` TEXT,
|
||
|
|
`manual_selector` INTEGER,
|
||
|
|
`ttl_seconds_after_finished` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_component_statuses (
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`type` TEXT,
|
||
|
|
`status` TEXT,
|
||
|
|
`message` TEXT,
|
||
|
|
`error` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_config_maps (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`immutable` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_endpoint_subsets (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`addresses` TEXT,
|
||
|
|
`not_ready_addresses` TEXT,
|
||
|
|
`ports` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_limit_ranges (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`type` TEXT,
|
||
|
|
`max` TEXT,
|
||
|
|
`min` TEXT,
|
||
|
|
`default` TEXT,
|
||
|
|
`default_request` TEXT,
|
||
|
|
`max_limit_request_ratio` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_namespaces (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`phase` TEXT,
|
||
|
|
`conditions` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_nodes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`pod_cidr` TEXT,
|
||
|
|
`pod_cidrs` TEXT,
|
||
|
|
`provider_id` TEXT,
|
||
|
|
`unschedulable` INTEGER,
|
||
|
|
`taints` TEXT,
|
||
|
|
`config_source` TEXT,
|
||
|
|
`do_not_use_external_id` TEXT,
|
||
|
|
`capacity` TEXT,
|
||
|
|
`allocatable` TEXT,
|
||
|
|
`phase` TEXT,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`addresses` TEXT,
|
||
|
|
`daemon_endpoints` TEXT,
|
||
|
|
`node_info` TEXT,
|
||
|
|
`images` TEXT,
|
||
|
|
`volumes_in_use` TEXT,
|
||
|
|
`volumes_attached` TEXT,
|
||
|
|
`config` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_persistent_volume_claims (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`access_modes` TEXT,
|
||
|
|
`selector` TEXT,
|
||
|
|
`resources` TEXT,
|
||
|
|
`volume_name` TEXT,
|
||
|
|
`storage_class_name` TEXT,
|
||
|
|
`volume_mode` TEXT,
|
||
|
|
`data_source` TEXT,
|
||
|
|
`data_source_ref` TEXT,
|
||
|
|
`phase` TEXT,
|
||
|
|
`capacity` TEXT,
|
||
|
|
`conditions` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_persistent_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`capacity` TEXT,
|
||
|
|
`access_modes` TEXT,
|
||
|
|
`claim_ref` TEXT,
|
||
|
|
`persistent_volume_reclaim_policy` TEXT,
|
||
|
|
`storage_class_name` TEXT,
|
||
|
|
`mount_options` TEXT,
|
||
|
|
`volume_mode` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`status_phase` TEXT,
|
||
|
|
`status_message` TEXT,
|
||
|
|
`status_reason` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`local_path` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_templates (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_template_containers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`capabilities_add` TEXT,
|
||
|
|
`capabilities_drop` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`proc_mount` TEXT,
|
||
|
|
`target_container_name` TEXT,
|
||
|
|
`image` TEXT,
|
||
|
|
`command` TEXT,
|
||
|
|
`args` TEXT,
|
||
|
|
`working_dir` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`env_from` TEXT,
|
||
|
|
`env` TEXT,
|
||
|
|
`resource_limits` TEXT,
|
||
|
|
`resource_requests` TEXT,
|
||
|
|
`volume_mounts` TEXT,
|
||
|
|
`volume_devices` TEXT,
|
||
|
|
`liveness_probe` TEXT,
|
||
|
|
`readiness_probe` TEXT,
|
||
|
|
`startup_probe` TEXT,
|
||
|
|
`lifecycle` TEXT,
|
||
|
|
`termination_message_path` TEXT,
|
||
|
|
`termination_message_policy` TEXT,
|
||
|
|
`image_pull_policy` TEXT,
|
||
|
|
`stdin` INTEGER,
|
||
|
|
`stdin_once` INTEGER,
|
||
|
|
`tty` INTEGER,
|
||
|
|
`pod_template_name` TEXT,
|
||
|
|
`container_type` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_templates_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`empty_dir_medium` TEXT,
|
||
|
|
`empty_dir_size_limit` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`git_repo_repository` TEXT,
|
||
|
|
`git_repo_revision` TEXT,
|
||
|
|
`git_repo_directory` TEXT,
|
||
|
|
`secret_items` TEXT,
|
||
|
|
`secret_default_mode` INTEGER,
|
||
|
|
`secret_optional` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`persistent_volume_claim_name` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`downward_api_items` TEXT,
|
||
|
|
`downward_api_default_mode` INTEGER,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`config_map_name` TEXT,
|
||
|
|
`config_map_items` TEXT,
|
||
|
|
`config_map_default_mode` INTEGER,
|
||
|
|
`config_map_optional` INTEGER,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`projected_sources` TEXT,
|
||
|
|
`projected_default_mode` INTEGER,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT,
|
||
|
|
`ephemeral_volume_claim_template` TEXT,
|
||
|
|
`pod_template_name` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pods (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` BIGINT,
|
||
|
|
`sysctls` TEXT,
|
||
|
|
`fs_group_change_policy` TEXT,
|
||
|
|
`node_affinity` TEXT,
|
||
|
|
`pod_affinity` TEXT,
|
||
|
|
`pod_anti_affinity` TEXT,
|
||
|
|
`dns_config_nameservers` TEXT,
|
||
|
|
`dns_config_searches` TEXT,
|
||
|
|
`dns_config_options` TEXT,
|
||
|
|
`node_selector` TEXT,
|
||
|
|
`restart_policy` TEXT,
|
||
|
|
`termination_grace_period_seconds` BIGINT,
|
||
|
|
`active_deadline_seconds` BIGINT,
|
||
|
|
`dns_policy` TEXT,
|
||
|
|
`service_account_name` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`share_process_namespace` INTEGER,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`hostname` TEXT,
|
||
|
|
`subdomain` TEXT,
|
||
|
|
`scheduler_name` TEXT,
|
||
|
|
`tolerations` TEXT,
|
||
|
|
`host_aliases` TEXT,
|
||
|
|
`priority_class_name` TEXT,
|
||
|
|
`priority` INTEGER,
|
||
|
|
`readiness_gates` TEXT,
|
||
|
|
`runtime_class_name` TEXT,
|
||
|
|
`enable_service_links` INTEGER,
|
||
|
|
`preemption_policy` TEXT,
|
||
|
|
`overhead` TEXT,
|
||
|
|
`topology_spread_constraints` TEXT,
|
||
|
|
`set_hostname_as_fqdn` INTEGER,
|
||
|
|
`phase` TEXT,
|
||
|
|
`conditions` TEXT,
|
||
|
|
`message` TEXT,
|
||
|
|
`reason` TEXT,
|
||
|
|
`nominated_node_name` TEXT,
|
||
|
|
`host_ip` TEXT,
|
||
|
|
`pod_ip` TEXT,
|
||
|
|
`pod_ips` TEXT,
|
||
|
|
`start_time` BIGINT,
|
||
|
|
`init_container_statuses` TEXT,
|
||
|
|
`container_statuses` TEXT,
|
||
|
|
`qos_class` TEXT,
|
||
|
|
`ephemeral_container_statuses` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_containers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`se_linux_options_user` TEXT,
|
||
|
|
`se_linux_options_role` TEXT,
|
||
|
|
`se_linux_options_type` TEXT,
|
||
|
|
`se_linux_options_level` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec_name` TEXT,
|
||
|
|
`windows_options_gmsa_credential_spec` TEXT,
|
||
|
|
`windows_options_run_as_user_name` TEXT,
|
||
|
|
`seccomp_profile_type` TEXT,
|
||
|
|
`seccomp_profile_localhost_profile` TEXT,
|
||
|
|
`run_as_user` BIGINT,
|
||
|
|
`run_as_group` BIGINT,
|
||
|
|
`run_as_non_root` INTEGER,
|
||
|
|
`capabilities_add` TEXT,
|
||
|
|
`capabilities_drop` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`proc_mount` TEXT,
|
||
|
|
`target_container_name` TEXT,
|
||
|
|
`image` TEXT,
|
||
|
|
`command` TEXT,
|
||
|
|
`args` TEXT,
|
||
|
|
`working_dir` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`env_from` TEXT,
|
||
|
|
`env` TEXT,
|
||
|
|
`resource_limits` TEXT,
|
||
|
|
`resource_requests` TEXT,
|
||
|
|
`volume_mounts` TEXT,
|
||
|
|
`volume_devices` TEXT,
|
||
|
|
`liveness_probe` TEXT,
|
||
|
|
`readiness_probe` TEXT,
|
||
|
|
`startup_probe` TEXT,
|
||
|
|
`lifecycle` TEXT,
|
||
|
|
`termination_message_path` TEXT,
|
||
|
|
`termination_message_policy` TEXT,
|
||
|
|
`image_pull_policy` TEXT,
|
||
|
|
`stdin` INTEGER,
|
||
|
|
`stdin_once` INTEGER,
|
||
|
|
`tty` INTEGER,
|
||
|
|
`pod_name` TEXT,
|
||
|
|
`container_type` TEXT,
|
||
|
|
`state` TEXT,
|
||
|
|
`last_termination_state` TEXT,
|
||
|
|
`ready` INTEGER,
|
||
|
|
`restart_count` INTEGER,
|
||
|
|
`image_repo` TEXT,
|
||
|
|
`image_id` TEXT,
|
||
|
|
`container_id` TEXT,
|
||
|
|
`started` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_volumes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`volume_type` TEXT,
|
||
|
|
`fs_type` TEXT,
|
||
|
|
`read_only` INTEGER,
|
||
|
|
`secret_name` TEXT,
|
||
|
|
`host_path_path` TEXT,
|
||
|
|
`host_path_type` TEXT,
|
||
|
|
`empty_dir_medium` TEXT,
|
||
|
|
`empty_dir_size_limit` TEXT,
|
||
|
|
`gce_persistent_disk_pd_name` TEXT,
|
||
|
|
`gce_persistent_disk_partition` INTEGER,
|
||
|
|
`aws_elastic_block_store_volume_id` TEXT,
|
||
|
|
`aws_elastic_block_store_partition` INTEGER,
|
||
|
|
`git_repo_repository` TEXT,
|
||
|
|
`git_repo_revision` TEXT,
|
||
|
|
`git_repo_directory` TEXT,
|
||
|
|
`secret_items` TEXT,
|
||
|
|
`secret_default_mode` INTEGER,
|
||
|
|
`secret_optional` INTEGER,
|
||
|
|
`nfs_server` TEXT,
|
||
|
|
`nfs_path` TEXT,
|
||
|
|
`iscsi_target_portal` TEXT,
|
||
|
|
`iscsi_iqn` TEXT,
|
||
|
|
`iscsi_lun` INTEGER,
|
||
|
|
`iscsi_interface` TEXT,
|
||
|
|
`iscsi_portals` TEXT,
|
||
|
|
`iscsi_discovery_chap_auth` INTEGER,
|
||
|
|
`iscsi_session_chap_auth` INTEGER,
|
||
|
|
`iscsi_initiator_name` TEXT,
|
||
|
|
`glusterfs_endpoints_name` TEXT,
|
||
|
|
`glusterfs_path` TEXT,
|
||
|
|
`persistent_volume_claim_name` TEXT,
|
||
|
|
`rbd_ceph_monitors` TEXT,
|
||
|
|
`rbd_image` TEXT,
|
||
|
|
`rbd_pool` TEXT,
|
||
|
|
`rbd_rados_user` TEXT,
|
||
|
|
`rbd_keyring` TEXT,
|
||
|
|
`flex_volume_driver` TEXT,
|
||
|
|
`flex_volume_options` TEXT,
|
||
|
|
`cinder_volume_id` TEXT,
|
||
|
|
`ceph_fs_monitors` TEXT,
|
||
|
|
`ceph_fs_path` TEXT,
|
||
|
|
`ceph_fs_user` TEXT,
|
||
|
|
`ceph_fs_secret_file` TEXT,
|
||
|
|
`flocker_dataset_name` TEXT,
|
||
|
|
`flocker_dataset_uuid` TEXT,
|
||
|
|
`downward_api_items` TEXT,
|
||
|
|
`downward_api_default_mode` INTEGER,
|
||
|
|
`fc_target_ww_ns` TEXT,
|
||
|
|
`fc_lun` INTEGER,
|
||
|
|
`fc_ww_ids` TEXT,
|
||
|
|
`azure_file_share_name` TEXT,
|
||
|
|
`config_map_name` TEXT,
|
||
|
|
`config_map_items` TEXT,
|
||
|
|
`config_map_default_mode` INTEGER,
|
||
|
|
`config_map_optional` INTEGER,
|
||
|
|
`vsphere_volume_volume_path` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_name` TEXT,
|
||
|
|
`vsphere_volume_storage_policy_id` TEXT,
|
||
|
|
`quobyte_registry` TEXT,
|
||
|
|
`quobyte_volume` TEXT,
|
||
|
|
`quobyte_user` TEXT,
|
||
|
|
`quobyte_group` TEXT,
|
||
|
|
`quobyte_tenant` TEXT,
|
||
|
|
`azure_disk_disk_name` TEXT,
|
||
|
|
`azure_disk_data_disk_uri` TEXT,
|
||
|
|
`azure_disk_caching_mode` TEXT,
|
||
|
|
`azure_disk_kind` TEXT,
|
||
|
|
`photon_persistent_disk_pd_id` TEXT,
|
||
|
|
`projected_sources` TEXT,
|
||
|
|
`projected_default_mode` INTEGER,
|
||
|
|
`portworx_volume_id` TEXT,
|
||
|
|
`scale_io_gateway` TEXT,
|
||
|
|
`scale_io_system` TEXT,
|
||
|
|
`scale_iossl_enabled` INTEGER,
|
||
|
|
`scale_io_protection_domain` TEXT,
|
||
|
|
`scale_io_storage_pool` TEXT,
|
||
|
|
`scale_io_storage_mode` TEXT,
|
||
|
|
`scale_io_volume_name` TEXT,
|
||
|
|
`storage_os_volume_name` TEXT,
|
||
|
|
`storage_os_volume_namespace` TEXT,
|
||
|
|
`csi_driver` TEXT,
|
||
|
|
`csi_volume_attributes` TEXT,
|
||
|
|
`ephemeral_volume_claim_template` TEXT,
|
||
|
|
`pod_name` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_resource_quotas (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`hard` TEXT,
|
||
|
|
`scopes` TEXT,
|
||
|
|
`scope_selector` TEXT,
|
||
|
|
`status_hard` TEXT,
|
||
|
|
`status_used` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_secrets (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`immutable` INTEGER,
|
||
|
|
`type` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_service_accounts (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`secrets` TEXT,
|
||
|
|
`image_pull_secrets` TEXT,
|
||
|
|
`automount_service_account_token` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_services (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`selector` TEXT,
|
||
|
|
`cluster_ip` TEXT,
|
||
|
|
`cluster_ips` TEXT,
|
||
|
|
`type` TEXT,
|
||
|
|
`external_ips` TEXT,
|
||
|
|
`session_affinity` TEXT,
|
||
|
|
`load_balancer_ip` TEXT,
|
||
|
|
`load_balancer_source_ranges` TEXT,
|
||
|
|
`external_name` TEXT,
|
||
|
|
`external_traffic_policy` TEXT,
|
||
|
|
`health_check_node_port` INTEGER,
|
||
|
|
`publish_not_ready_addresses` INTEGER,
|
||
|
|
`session_affinity_config` TEXT,
|
||
|
|
`ip_families` TEXT,
|
||
|
|
`ip_family_policy` TEXT,
|
||
|
|
`allocate_load_balancer_node_ports` INTEGER,
|
||
|
|
`load_balancer_class` TEXT,
|
||
|
|
`internal_traffic_policy` TEXT,
|
||
|
|
`load_balancer` TEXT,
|
||
|
|
`conditions` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_api_resources (
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`singular_name` TEXT,
|
||
|
|
`namespaced` INTEGER,
|
||
|
|
`group` TEXT,
|
||
|
|
`version` TEXT,
|
||
|
|
`kind` TEXT,
|
||
|
|
`verbs` TEXT,
|
||
|
|
`short_names` TEXT,
|
||
|
|
`categories` TEXT,
|
||
|
|
`storage_version_hash` TEXT,
|
||
|
|
`group_version` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_info (
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`major` TEXT,
|
||
|
|
`minor` TEXT,
|
||
|
|
`git_version` TEXT,
|
||
|
|
`git_commit` TEXT,
|
||
|
|
`git_tree_state` TEXT,
|
||
|
|
`build_date` TEXT,
|
||
|
|
`go_version` TEXT,
|
||
|
|
`compiler` TEXT,
|
||
|
|
`platform` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_events (
|
||
|
|
`time` BIGINT,
|
||
|
|
`event_type` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`reporting_controller` TEXT,
|
||
|
|
`reporting_instance` TEXT,
|
||
|
|
`action` TEXT,
|
||
|
|
`reason` TEXT,
|
||
|
|
`note` TEXT,
|
||
|
|
`type` TEXT,
|
||
|
|
`regarding_kind` TEXT,
|
||
|
|
`regarding_namespace` TEXT,
|
||
|
|
`regarding_name` TEXT,
|
||
|
|
`regarding_uid` TEXT,
|
||
|
|
`related_kind` TEXT,
|
||
|
|
`related_namespace` TEXT,
|
||
|
|
`related_name` TEXT,
|
||
|
|
`related_uid` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_ingress_classes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`controller` TEXT,
|
||
|
|
`parameters` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_ingresses (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`ingress_class_name` TEXT,
|
||
|
|
`default_backend` TEXT,
|
||
|
|
`tls` TEXT,
|
||
|
|
`rules` TEXT,
|
||
|
|
`load_balancer` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_network_policies (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`pod_selector` TEXT,
|
||
|
|
`policy_types` TEXT,
|
||
|
|
`type` TEXT,
|
||
|
|
`ports` TEXT,
|
||
|
|
`from_to` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_disruption_budgets (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`min_available` TEXT,
|
||
|
|
`selector` TEXT,
|
||
|
|
`max_unavailable` TEXT,
|
||
|
|
`observed_generation` BIGINT,
|
||
|
|
`disrupted_pods` TEXT,
|
||
|
|
`disruptions_allowed` INTEGER,
|
||
|
|
`current_healthy` INTEGER,
|
||
|
|
`desired_healthy` INTEGER,
|
||
|
|
`expected_pods` INTEGER,
|
||
|
|
`conditions` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_pod_security_policies (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`privileged` INTEGER,
|
||
|
|
`default_add_capabilities` TEXT,
|
||
|
|
`required_drop_capabilities` TEXT,
|
||
|
|
`allowed_capabilities` TEXT,
|
||
|
|
`volumes` TEXT,
|
||
|
|
`host_network` INTEGER,
|
||
|
|
`host_ports` TEXT,
|
||
|
|
`host_pid` INTEGER,
|
||
|
|
`host_ipc` INTEGER,
|
||
|
|
`se_linux` TEXT,
|
||
|
|
`run_as_user` TEXT,
|
||
|
|
`run_as_group` TEXT,
|
||
|
|
`supplemental_groups` TEXT,
|
||
|
|
`fs_group` TEXT,
|
||
|
|
`read_only_root_filesystem` INTEGER,
|
||
|
|
`default_allow_privilege_escalation` INTEGER,
|
||
|
|
`allow_privilege_escalation` INTEGER,
|
||
|
|
`allowed_host_paths` TEXT,
|
||
|
|
`allowed_flex_volumes` TEXT,
|
||
|
|
`allowed_csi_drivers` TEXT,
|
||
|
|
`allowed_unsafe_sysctls` TEXT,
|
||
|
|
`forbidden_sysctls` TEXT,
|
||
|
|
`allowed_proc_mount_types` TEXT,
|
||
|
|
`runtime_class` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_cluster_role_binding_subjects (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`role_api_group` TEXT,
|
||
|
|
`role_name` TEXT,
|
||
|
|
`role_kind` TEXT,
|
||
|
|
`subject_name` TEXT,
|
||
|
|
`subject_kind` TEXT,
|
||
|
|
`subject_namespace` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_cluster_role_policy_rules (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`verbs` TEXT,
|
||
|
|
`api_groups` TEXT,
|
||
|
|
`resources` TEXT,
|
||
|
|
`resource_names` TEXT,
|
||
|
|
`non_resource_urls` TEXT,
|
||
|
|
`aggregation_rule` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_role_binding_subjects (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`role_name` TEXT,
|
||
|
|
`role_kind` TEXT,
|
||
|
|
`subject_name` TEXT,
|
||
|
|
`subject_kind` TEXT,
|
||
|
|
`subject_namespace` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_role_policy_rules (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`namespace` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`verbs` TEXT,
|
||
|
|
`api_groups` TEXT,
|
||
|
|
`resources` TEXT,
|
||
|
|
`resource_names` TEXT,
|
||
|
|
`non_resource_urls` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_csi_drivers (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`attach_required` INTEGER,
|
||
|
|
`pod_info_on_mount` INTEGER,
|
||
|
|
`volume_lifecycle_modes` TEXT,
|
||
|
|
`storage_capacity` INTEGER,
|
||
|
|
`fs_group_policy` TEXT,
|
||
|
|
`token_requests` TEXT,
|
||
|
|
`requires_republish` INTEGER
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_csi_node_drivers (
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`node_id` TEXT,
|
||
|
|
`topology_keys` TEXT,
|
||
|
|
`allocatable` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_storage_classes (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`provisioner` TEXT,
|
||
|
|
`parameters` TEXT,
|
||
|
|
`reclaim_policy` TEXT,
|
||
|
|
`mount_options` TEXT,
|
||
|
|
`allow_volume_expansion` INTEGER,
|
||
|
|
`volume_binding_mode` TEXT,
|
||
|
|
`allowed_topologies` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE kubernetes_volume_attachments (
|
||
|
|
`uid` TEXT,
|
||
|
|
`cluster_name` TEXT,
|
||
|
|
`cluster_uid` TEXT,
|
||
|
|
`name` TEXT,
|
||
|
|
`creation_timestamp` BIGINT,
|
||
|
|
`labels` TEXT,
|
||
|
|
`annotations` TEXT,
|
||
|
|
`attacher` TEXT,
|
||
|
|
`source` TEXT,
|
||
|
|
`node_name` TEXT,
|
||
|
|
`attached` INTEGER,
|
||
|
|
`attachment_metadata` TEXT,
|
||
|
|
`attach_error` TEXT,
|
||
|
|
`detach_error` TEXT
|
||
|
|
);
|
||
|
|
|
||
|
|
```
|