secret.go 260 B

1234567891011121314
  1. package container
  2. import "os"
  3. // ContainerSecret represents a secret in a container. This gets realized
  4. // in the container tmpfs
  5. type ContainerSecret struct {
  6. Name string
  7. Target string
  8. Data []byte
  9. UID string
  10. GID string
  11. Mode os.FileMode
  12. }