--- # Copyright Red Hat, Inc. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # All variables intended for modification should be placed in this file. # All variables within this role should have a prefix of "cifmw_cert_manager" cifmw_cert_manager_basedir: "{{ cifmw_basedir }}" cifmw_cert_manager_manifests_dir: "{{ cifmw_manifests | default(cifmw_cert_manager_basedir ~ '/artifacts/manifests') }}/cert-manager" cifmw_cert_manager_operator_namespace: cert-manager-operator cifmw_cert_manager_openshift_version: stable-v1 cifmw_cert_manager_release_manifest: "https://github.com/cert-manager/cert-manager/releases/download/v1.19.2/cert-manager.yaml" cifmw_cert_manager_install_from_release_manifest: true cifmw_cert_manager_olm_operator_group: apiVersion: operators.coreos.com/v1 kind: OperatorGroup metadata: annotations: olm.providedAPIs: CertManager.v1alpha1.operator.openshift.io,Certificate.v1.cert-manager.io,CertificateRequest.v1.cert-manager.io,Challenge.v1.acme.cert-manager.io,ClusterIssuer.v1.cert-manager.io,Issuer.v1.cert-manager.io,Order.v1.acme.cert-manager.io generateName: "{{ cifmw_cert_manager_operator_namespace }}-" name: "{{ cifmw_cert_manager_operator_namespace }}-bccwx" namespace: "{{ cifmw_cert_manager_operator_namespace }}" spec: targetNamespaces: - "{{ cifmw_cert_manager_operator_namespace }}" upgradeStrategy: Default cifmw_cert_manager_subscription_source: redhat-operators cifmw_cert_manager_subscription_sourcenamespace: openshift-marketplace cifmw_cert_manager_olm_subscription: apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: labels: operators.coreos.com/openshift-cert-manager-operator.cert-manager-operator: "" name: openshift-cert-manager-operator namespace: "{{ cifmw_cert_manager_operator_namespace }}" spec: channel: "{{ cifmw_cert_manager_openshift_version }}" installPlanApproval: Automatic name: openshift-cert-manager-operator source: "{{ cifmw_cert_manager_subscription_source }}" sourceNamespace: "{{ cifmw_cert_manager_subscription_sourcenamespace }}" cifmw_cert_manager_version: latest cifmw_cert_manager_validate: true cifmw_cert_manager_cleanup: false cifmw_cert_manager_crds: - Certificate - CertificateRequest - Challenge - ClusterIssuer - Issuer