You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes it is neccesary to specialise a resource beyond just the type. For example, one workload might need an externally accessible s3 bucket and another might require one that is encrypted and only accessible to specific riles to store sensitive information.
Context
The class property allows developers to specialise the resource type. The concept is modelled on Kubernetes Storage Classes and works similarly. For example the workload that needs an externally accessible workload might set the class to external while the workload that requires an encrypted bucket might have a class of sensitive.
The score spec needs to be updated to include a class property in the resource object. The value of the class must be a valid ID, i.e. satisfy this regex: ^[a-z0-9]+(?:-[a-z0-9]+)*$
The text was updated successfully, but these errors were encountered:
Detailed description
Sometimes it is neccesary to specialise a resource beyond just the type. For example, one workload might need an externally accessible s3 bucket and another might require one that is encrypted and only accessible to specific riles to store sensitive information.
Context
The
class
property allows developers to specialise the resource type. The concept is modelled on Kubernetes Storage Classes and works similarly. For example the workload that needs an externally accessible workload might set the class toexternal
while the workload that requires an encrypted bucket might have a class ofsensitive
.Example:
Possible implementation
The score spec needs to be updated to include a class property in the resource object. The value of the class must be a valid ID, i.e. satisfy this regex: ^[a-z0-9]+(?:-[a-z0-9]+)*$
The text was updated successfully, but these errors were encountered: