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:
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 |
# This policy deploys the Red Hat Advanced Cluster Security Secure Cluster | |
# Services to all OpenShift managed clusters. Note that it is set to | |
# enforce by default and it requires RHACM 2.3 template support. | |
# | |
# Prior to applying this policy you must visit | |
# https://github.com/open-cluster-management/advanced-cluster-security | |
# and follow the instructions there to deploy prerequisite bundles | |
# needed by the Secure Cluster Services for communicating with the | |
# Central server. | |
# |