Skip to content

Commit

Permalink
volume and volumeMounts
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdarruda committed Jan 19, 2025
1 parent bf8361a commit 4589fd1
Showing 1 changed file with 127 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,124 @@ defmodule SpawnOperator.Versions.Api.V1.ActorHost do
type: object
replicas:
type: integer
volumes:
type: array
items:
type: object
properties:
name:
type: string
configMap:
type: object
properties:
name:
type: string
items:
type: array
items:
type: object
properties:
key:
type: string
path:
type: string
emptyDir:
type: object
properties:
medium:
type: string
enum: ["", "Memory"]
sizeLimit:
type: string
persistentVolumeClaim:
type: object
properties:
claimName:
type: string
readOnly:
type: boolean
secret:
type: object
properties:
secretName:
type: string
items:
type: array
items:
type: object
properties:
key:
type: string
path:
type: string
hostPath:
type: object
properties:
path:
type: string
type:
type: string
enum: ["", "DirectoryOrCreate", "Directory", "FileOrCreate", "File", "Socket", "CharDevice", "BlockDevice"]
projected:
type: object
properties:
sources:
type: array
items:
type: object
properties:
configMap:
type: object
properties:
name:
type: string
items:
type: array
items:
type: object
properties:
key:
type: string
path:
type: string
secret:
type: object
properties:
name:
type: string
items:
type: array
items:
type: object
properties:
key:
type: string
path:
type: string
downwardAPI:
type: object
properties:
items:
type: array
items:
type: object
properties:
path:
type: string
fieldRef:
type: object
properties:
fieldPath:
type: string
resourceFieldRef:
type: object
properties:
containerName:
type: string
resource:
type: string
divisor:
type: string
topology:
type: object
properties:
Expand All @@ -75,6 +193,15 @@ defmodule SpawnOperator.Versions.Api.V1.ActorHost do
properties:
image:
type: string
volumeMounts:
type: array
items:
type: object
properties:
name:
type: string
mountPath:
type: string
embedded:
type: boolean
sdk:
Expand Down

0 comments on commit 4589fd1

Please sign in to comment.