I hereby claim:
- I am radikaled on github.
- I am nkim (https://keybase.io/nkim) on keybase.
- I have a public key whose fingerprint is 3591 1E48 935C F499 BAD3 B3E8 A1F5 CC29 F13F DF74
To claim this, I am signing this object:
| # Generated by Butane; do not edit | |
| apiVersion: machineconfiguration.openshift.io/v1 | |
| kind: MachineConfig | |
| metadata: | |
| labels: | |
| machineconfiguration.openshift.io/role: worker | |
| name: 99-worker-load-nvme-tcp-modules | |
| spec: | |
| config: | |
| ignition: |
I hereby claim:
To claim this, I am signing this object:
| apiVersion: automationcontroller.ansible.com/v1beta1 | |
| kind: AutomationController | |
| metadata: | |
| name: example | |
| namespace: aap | |
| spec: | |
| postgres_keepalives_count: 5 | |
| postgres_keepalives_idle: 5 | |
| create_preload_data: true | |
| route_tls_termination_mechanism: Edge |
| # BountyCastle will not start without this | |
| securerandom.strongAlgorithms=PKCS11:SunPKCS11-NSS-FIPS | |
| # https://www.keycloak.org/server/fips#_other_restrictions | |
| fips.provider.8=SunJGSS |
| apiVersion: k8s.keycloak.org/v2alpha1 | |
| kind: Keycloak | |
| metadata: | |
| name: example-keycloak | |
| namespace: $(NAMESPACE) | |
| spec: | |
| additionalOptions: | |
| - name: spi-truststore-file-file | |
| value: /opt/keycloak/conf/server.keystore | |
| - name: spi-truststore-file-password |
| FROM registry.redhat.io/rhbk/keycloak-rhel9:22-6 as builder | |
| # What these environment variables mean: | |
| # https://www.keycloak.org/server/all-config?f=build | |
| # Set to appropriate database provider | |
| ENV KC_DB=postgres | |
| ENV KC_CACHE_STACK=kubernetes | |
| ENV KC_FEATURES=fips,kerberos |
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: example | |
| labels: | |
| app: httpd | |
| namespace: nfs | |
| spec: | |
| volumes: | |
| - name: nfs |
| apiVersion: v1 | |
| kind: PersistentVolumeClaim | |
| metadata: | |
| name: nfs-claim | |
| spec: | |
| accessModes: | |
| - ReadWriteOnce | |
| resources: | |
| requests: | |
| storage: 100Gi |
| apiVersion: v1 | |
| kind: PersistentVolume | |
| metadata: | |
| name: pv0001 | |
| spec: | |
| capacity: | |
| storage: 100Gi | |
| accessModes: | |
| - ReadWriteOnce | |
| nfs: |
| FROM registry.redhat.io/openshift4/ose-cli AS builder | |
| WORKDIR /tmp | |
| RUN wget -O azcopy_v10.tar.gz "https://aka.ms/downloadazcopy-v10-linux" && tar -xf azcopy_v10.tar.gz --strip-components=1 | |
| FROM registry.redhat.io/openshift4/ose-cli | |
| COPY --from=builder --chown=root:root --chmod=755 /tmp/azcopy /usr/bin |