Constraint Templates describes both the Rego that enforces the Constraint and the schema of the Constraint. The Constraint schema allows an admin to fine-tune the behavior, much like arguments to a function. For example, a Constraint Template can be created to check all the labels described in a Constraint to be present. Templates are always defined in YAML format.
Perform the below steps to create a new Constraint Template:
Login to the Controller and select Constraint Templates under OPA Gatekeeper. Users can view the list of existing templates on the Constraint Templates page
Click New Template
Provide a name for the template and select an Artifact Sync option
To upload a file from the system, select the Upload files manually option
To use the files available from the git repository, select the Pull files from repository option
Click Create to proceed or Cancel to abort the process
Example of YAML file:
apiVersion:templates.gatekeeper.sh/v1
kind:ConstraintTemplate
metadata:
name:k8sreplicalimits
annotations:
description:>-
Requiresthatobjectswiththefield`spec.replicas`(Deployments,
ReplicaSets,etc.)specifyanumberofreplicaswithindefinedranges.
spec:
crd:
spec:
names:
kind:K8sReplicaLimits
validation:
# Schema for the `parameters` fieldopenAPIV3Schema:
type:object
properties:
ranges:
type:array
description:Allowedrangesfornumbersofreplicas.Valuesareinclusive.
items:
type:object
description:Arangeofallowedreplicas.Valuesareinclusive.
properties:
min_replicas:
description:Theminimumnumberofreplicasallowed,inclusive.
type:integer
max_replicas:
description:Themaximumnumberofreplicasallowed,inclusive.
type:integer
targets:
-target:admission.k8s.gatekeeper.sh
rego:|packagek8sreplicalimits
deployment_name=input.review.object.metadata.name
violation[{"msg":msg}]{spec:=input.review.object.spec
notinput_replica_limit(spec)msg:=sprintf("The provided number of replicas is not allowed for deployment: %v. Allowed ranges: %v",[deployment_name,input.parameters])}input_replica_limit(spec){provided:=input.review.object.spec.replicas
count(input.parameters.ranges)>0range:=input.parameters.ranges[_]value_within_range(range,provided)}value_within_range(range,value){range.min_replicas<=value
range.max_replicas>=value
}
Click Choose File and upload the YAML file (if the Upload files manually option was chosen)
Select the name of the repository from the drop-down and enter the path for the YAML file (if the Pull files from repository option was chosen)
Advanced Settings (Optional)
Click Advanced Settings to select any of the provided options
force: Enabling force option forces resource updates through a replacement strategy
disableOpenAPIValidation: Enabling DisableOpenAPIValidation option prevents validating rendered YAML templates against the Kubernetes OpenAPI Schema