- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
When upgrading OpenShift Container Platform (OCP) from 4.11 to 4.12 with Datadog installed on your cluster, you may encounter the following error for the package-server-manager
pod:
deployment openshift-operator-lifecycle-manager/package-server-manager has a
replica failure FailedCreate: pods "package-server-manager-12a3b4cd5e-1x2y3" is
forbidden: violates PodSecurity "restricted:v1.24": seLinuxOptions (pod set
forbidden securityContext.seLinuxOptions: type "spc_t"; user may not be set;
role may not be set)
This error occurs if custom Security Context Constraints (SCCs), such as Datadog’s custom SCC, are present in the cluster.
Back up the datadog
SCC to datadog_scc.yaml
:
oc get scc datadog -n <NAMESPACE> -o yaml > datadog_scc.yaml
Replace <NAMESPACE>
with the name of your project namespace.
Remove the datadog
SCC:
oc delete scc datadog -n <NAMESPACE>
Replace <NAMESPACE>
with the name of your project namespace.
Finish upgrading your cluster.
Recreate the SCC from your backup file:
oc create -f datadog_scc.yaml