# io.k8s.api.core.v1.SELinuxOptions

From **Kubernetes**.

SELinuxOptions are the labels to be applied to the container

- Type: `object`

## Properties

### `level`

- Required: false
- Type: `string`

Level is SELinux level label that applies to the container.

### `role`

- Required: false
- Type: `string`

Role is a SELinux role label that applies to the container.

### `type`

- Required: false
- Type: `string`

Type is a SELinux type label that applies to the container.

### `user`

- Required: false
- Type: `string`

User is a SELinux user label that applies to the container.

## JSON Schema

```json
{"description":"SELinuxOptions are the labels to be applied to the container","properties":{"level":{"description":"Level is SELinux level label that applies to the container.","type":"string"},"role":{"description":"Role is a SELinux role label that applies to the container.","type":"string"},"type":{"description":"Type is a SELinux type label that applies to the container.","type":"string"},"user":{"description":"User is a SELinux user label that applies to the container.","type":"string"}},"type":"object"}
```
