This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kind: LDAPSyncConfig | |
| apiVersion: v1 | |
| url: "ldap://ipa.shared.example.opentlc.com" | |
| insecure: false | |
| ca: "/etc/origin/master/ipa-ca.crt" | |
| bindDN: "uid=admin,cn=users,cn=accounts,dc=shared,dc=example,dc=opentlc,dc=com" | |
| bindPassword: "r3dh4t1!" | |
| rfc2307: | |
| groupsQuery: | |
| baseDN: "cn=groups,cn=accounts,dc=shared,dc=example,dc=opentlc,dc=com" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ cat pre-flight.yaml | |
| --- | |
| - hosts: all | |
| tasks: | |
| - name: Update OS packages | |
| yum: | |
| name: '*' | |
| state: latest | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # This script is EXPERIMENTAL, and it is not supported by me nor Red Hat. | |
| # | |
| set -e | |
| set -o pipefail | |
| servername=$(hostname -f) # FQDN of the NFS server (localhost) | |
| vgname="storage" # Name of LVM VG used for creating the NFS Volumes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [OSEv3:children] | |
| masters | |
| nodes | |
| etcd | |
| nfs | |
| [OSEv3:vars] | |
| ansible_ssh_user=ec2-user | |
| ansible_become=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: "autoscaling.openshift.io/v1alpha1" | |
| kind: "ClusterAutoscaler" | |
| metadata: | |
| name: "default" | |
| spec: | |
| resourceLimits: | |
| maxNodesTotal: 20 | |
| scaleDown: | |
| enabled: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - name: Prepare instances for OpenShift Deployment on AWS | |
| hosts: ocp* | |
| become: yes | |
| vars: | |
| rhn_username: "{{ lookup('env','RHN_USERNAME') }}" | |
| rhn_password: "{{ lookup('env','RHN_PASSWORD') }}" | |
| rhn_pool: "{{ lookup('env','RHN_SUBSCRIPTION_POOL') }}" | |
| dockerstorage_dev: "/dev/sdb" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [OSEv3:children] | |
| masters | |
| nodes | |
| etcd | |
| nfs | |
| glusterfs | |
| [OSEv3:vars] | |
| ansible_ssh_user=root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [OSEv3:children] | |
| masters | |
| nodes | |
| etcd | |
| glusterfs | |
| [OSEv3:vars] | |
| ansible_ssh_user=ec2-user | |
| ansible_become=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Namespace used for sandboxing | |
| # | |
| --- | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| creationTimestamp: null | |
| name: demo-ocs-workloads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # this config file contains all config fields with comments | |
| kind: Cluster | |
| apiVersion: kind.x-k8s.io/v1alpha4 | |
| # patch the generated kubeadm config with some extra settings | |
| kubeadmConfigPatches: | |
| - | | |
| apiVersion: kubeadm.k8s.io/v1beta1 | |
| kind: ClusterConfiguration | |
| metadata: | |
| name: config |
OlderNewer