...

Text file src/sigs.k8s.io/kustomize/kyaml/fn/framework/testdata/template-processor/templates/container-sources/cron_job.template.yaml

Documentation: sigs.k8s.io/kustomize/kyaml/fn/framework/testdata/template-processor/templates/container-sources

     1# Copyright 2021 The Kubernetes Authors.
     2# SPDX-License-Identifier: Apache-2.0
     3
     4apiVersion: batch/v1
     5kind: CronJob
     6metadata:
     7  name: hello
     8spec:
     9  schedule: "*/1 * * * *"
    10  jobTemplate:
    11    spec:
    12      template:
    13        spec:
    14          containers:
    15          - name: hello
    16            image: nginx
    17            env:
    18            - name: EXISTING
    19              value: variable

View as plain text