Skip to content

Instantly share code, notes, and snippets.

@williamcaban
Last active October 25, 2019 16:54
Show Gist options
  • Save williamcaban/15b209129407100c98dc1766ae2288cb to your computer and use it in GitHub Desktop.
Save williamcaban/15b209129407100c98dc1766ae2288cb to your computer and use it in GitHub Desktop.

Enabling SCTP on OpenShift 4.2

WARNING: THIS PROCEDURE CANNOT BE UNDONE AND PREVENTS CLUSTER UPGRADES.

Create a FeatureGate resource to enable the SCTP Kubernetes Alpha feature.

Sample Custom Resource featuregate-sctp.yaml

apiVersion: config.openshift.io/v1
kind: FeatureGate
metadata:
  name: cluster
spec:
  featureSet: CustomNoUpgrade
  customNoUpgrade:
    enabled:
    - SCTPSupport
oc create -f featuregate-sctp.yaml

From SCTP demo and instructions https://github.com/williamcaban/ocp4-sctp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment