Subscribe to our blog

Red Hat Advanced Cluster Management for Kubernetes (RHACM) Governance provides an extensible framework for enterprises to introduce their own security and configuration policies that can be applied to managed OpenShift or Kubernetes clusters. For more information on RHACM policies, I recommend reading the Applying Policy-Based Governance at Scale Using Templates and Comply to standards using policy based governance blogs.

In this multi-part blog series, I showcase several techniques you can use when using templates in your RHACM Policies. In part one, I will review practices you can use to make your templates more readable and easier to maintain.

Prerequisites

Use PolicyGenerator to manage code

If you are not familiar with PolicyGenerator I recommend you read the Generating Governance Policies Using Kustomize and GitOps blog post.

The PolicyGenerator greatly simplifies the management of your policies by allowing you to focus on the configuration to be applied. The generator configuration lets you control the specifics of the policy that is produced.

Below you can see the difference in the required code to create a simple namespace:

Screenshot of namespace template

"eq" function instead of || to compare 1:n

In the case where you want to compare and test an object to see if it equals one out of multiple values, you would normally write the if statement as follows:

$myObject == Arg1 || $myObject == Arg2 || $myObject == Arg3

 

But in Go, the eq is a function. This allows the evaluation of all arguments against the object. The above could be written as this instead:

eq $myObject Arg1 Arg2 Arg3

 

Here is a full example. Suppose you wanted your clusters in production and staging to use a different number of replicas for the IngressController compared to other environments. You would write a policy similar to the following:

apiVersion: operator.openshift.io/v1
kind: IngressController
metadata:
 name: default
 namespace: openshift-ingress-operator
spec:
 httpEmptyRequestsPolicy: Respond
  replicas: '{{ if eq (fromClusterClaim "env") "production" "staging" -}} 6 {{- else -}} 2 {{- end }}'

 

Use ternary instead of if/else statements

The previous example used the idea if the environment is "production" or "staging" set the number of replicas to six, otherwise set the replicas to two.

Above I used an if/else statement to highlight the eq function. A better and more concise way to achieve this would have been to use a ternary function. The ternary function returns the first value if the test value is true and will return the second value if the test is false or an empty value.

Rewriting the above, you can see how much easier it is to read. Note you can pipe the test value into the ternary function or list it as the third argument.

apiVersion: operator.openshift.io/v1
kind: IngressController
metadata:
 name: default
 namespace: openshift-ingress-operator
spec:
 httpEmptyRequestsPolicy: Respond
  replicas: '{{ (eq (fromClusterClaim "env") "production" "staging") | ternary 6 2 }}'

 

Use printf to format and concatenate strings

The printf() function takes a templated string that contains the text to be formatted, plus some annotated verbs that tell the function how to format the remaining arguments.

Instead of using multiple template blocks like:

{{ fromClusterClaim "env" }}-mycluster-{{ fromClusterClaim "name" }}

 

You can use the printf() function to rewrite it as:

{{ printf("%s-mycluster-%s", (fromClusterClaim "env"), (fromClusterClaim "name")) }}

 

printf() also allows formatting of the data using a wide array of verbs. Some of the most commonly used verb specifiers are:

  • %v – formats the value in a default format
  • %d – formats decimal integers
  • %g – formats the floating-point numbers
  • %b – formats base 2 numbers
  • %o – formats base 8 numbers
  • %t – formats true or false values
  • %s – formats string values

You can also explicitly specify which argument index to use with the verb. This allows you to control where the argument is used instead of the default successive behavior and use an argument multiple times. The templated text is considered zero(0) in the indexed array, so arguments will start with a one(1).

{{ printf("%[1]s-mycluster-%[1]s", (fromClusterClaim "env")) }}

 

Set default values

When creating policies that use data from other objects, prevent errors by confirming a value gets defined. Maybe your policy depends on a value in a ConfigMap created by another Policy or the output of a lookup that might not return a value. To confirm the Policy is generated as expected, use the default function to produce a value.

Suppose you want the IngressController to set the replica count to the number of infra nodes. To prevent a condition where there are no Ingress pods, you want to default to a count of two. Because this policy could be applied before infra nodes are created, or the lookup could unexpectedly return an empty set, you need a default value defined.

Also, note you are using a feature introduced in RHACM 2.8 using labels to limit the lookup function only to return nodes with the infra role.

apiVersion: operator.openshift.io/v1
kind: IngressController
metadata:
 name: default
 namespace: openshift-ingress-operator
spec:
 httpEmptyRequestsPolicy: Respond
  replicas: '{{ (len (lookup "v1" "Node" "" "" "node-role.kubernetes.io/infra").items | default 2) | toInt }}'

 

Use managed cluster data in hub templates

Previous versions of RHACM made the ManagedCluster name available to hub templates by using the .ManagedClusterName context variable. This was useful when you needed to include the name of the cluster in your template.

Starting with RHACM 2.8, a new context variable .ManagedClusterLabels is available to allow access labels applied to the ManagedCluster. This new variable greatly simplifies getting information about the ManagedCluster stored in labels.

Previously, to access the value of a region label, you would have to use the lookup function to access the ManagedCluster object and read the metadata of the return object:

region: '{{hub (lookup "cluster.open-cluster-management.io/v1" "ManagedCluster" "default" .ManagedClusterName).metadata.labels.region hub}}'

 

A more concise and easier-to-read hub template can replace the above. Additionally, this removes a call to the apiserver during Policy evaluation:

region: '{{hub .ManagedClusterLabels.region hub}}'

 

Note if the label you want to reference has special characters in the name like dashes, periods, or forward slashes, you will receive an error such as "template: tmpl:17: bad character U+002D '-'". Index these labels to use them with the .ManagedClusterLabels context variable:

channel: '{{hub (index .ManagedClusterLabels "openshiftVersion-major-minor") hub}}'

 

Copy the entire ConfigMaps and Secret data

Many use cases exist where a Policy needs to copy an entire Secret from one namespace to another or from the Hub to a Managed cluster. RHACM 2.8 introduced two new templating functions to make this easier.

In RHACM 2.7 and earlier, a Policy had to template every key from the Secret or ConfigMap. This repetitive task needed frequent updates as new data was added to the reference object.

apiVersion: v1
kind: Secret
metadata:
 name: admission-control-tls
 namespace: stackrox
data:
 admission-control-cert.pem: '{{hub fromSecret "my-policies" "admission-control-tls" "admission-control-cert.pem" hub}}'
 admission-control-key.pem: '{{hub fromSecret "my-policies" "admission-control-tls" "admission-control-key.pem" hub}}'
 ca.pem: '{{hub fromSecret "my-policies" "admission-control-tls" "ca.pem" hub}}'
type: Opaque

 

RHACM 2.8 introduced the copySecretData and copyConfigMapData functions, which you can use to copy all data keys from the reference object. These functions are also available in Hub templates to copy the reference object from the Hub to managed clusters.

apiVersion: v1
kind: Secret
metadata:
 name: admission-control-tls
 namespace: stackrox
data: '{{hub copySecretData "my-policies" "admission-control-tls" hub}}'
type: Opaque

 

Wrap up

In part one of this series, I outlined several template functions and examples you can use to make your templates easier to read and maintain. In part two, I will look at using the raw-object-templates to expand templates for more complex use cases.


About the author

Browse by channel

automation icon

Automation

The latest on IT automation for tech, teams, and environments

AI icon

Artificial intelligence

Updates on the platforms that free customers to run AI workloads anywhere

open hybrid cloud icon

Open hybrid cloud

Explore how we build a more flexible future with hybrid cloud

security icon

Security

The latest on how we reduce risks across environments and technologies

edge icon

Edge computing

Updates on the platforms that simplify operations at the edge

Infrastructure icon

Infrastructure

The latest on the world’s leading enterprise Linux platform

application development icon

Applications

Inside our solutions to the toughest application challenges

Original series icon

Original shows

Entertaining stories from the makers and leaders in enterprise tech