mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
108 lines
2.8 KiB
Plaintext
108 lines
2.8 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * networking/ptp/ptp-cloud-events-consumer-dev-reference-v2.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="ptp-reference-deployment-and-service-crs-v2_{context}"]
|
|
= Reference event consumer deployment and service CRs using PTP events REST API v2
|
|
|
|
Use the following example PTP event consumer custom resources (CRs) as a reference when deploying your PTP events consumer application for use with the PTP events REST API v2.
|
|
|
|
.Reference cloud event consumer namespace
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: cloud-events
|
|
labels:
|
|
security.openshift.io/scc.podSecurityLabelSync: "false"
|
|
pod-security.kubernetes.io/audit: "privileged"
|
|
pod-security.kubernetes.io/enforce: "privileged"
|
|
pod-security.kubernetes.io/warn: "privileged"
|
|
name: cloud-events
|
|
openshift.io/cluster-monitoring: "true"
|
|
annotations:
|
|
workload.openshift.io/allowed: management
|
|
----
|
|
|
|
.Reference cloud event consumer deployment
|
|
[source,yaml]
|
|
----
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cloud-consumer-deployment
|
|
namespace: cloud-events
|
|
labels:
|
|
app: consumer
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: consumer
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
target.workload.openshift.io/management: '{"effect": "PreferredDuringScheduling"}'
|
|
labels:
|
|
app: consumer
|
|
spec:
|
|
nodeSelector:
|
|
node-role.kubernetes.io/worker: ""
|
|
serviceAccountName: consumer-sa
|
|
containers:
|
|
- name: cloud-event-consumer
|
|
image: cloud-event-consumer
|
|
imagePullPolicy: Always
|
|
args:
|
|
- "--local-api-addr=consumer-events-subscription-service.cloud-events.svc.cluster.local:9043"
|
|
- "--api-path=/api/ocloudNotifications/v2/"
|
|
- "--http-event-publishers=ptp-event-publisher-service-NODE_NAME.openshift-ptp.svc.cluster.local:9043"
|
|
env:
|
|
- name: NODE_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: spec.nodeName
|
|
- name: CONSUMER_TYPE
|
|
value: "PTP"
|
|
- name: ENABLE_STATUS_CHECK
|
|
value: "true"
|
|
volumes:
|
|
- name: pubsubstore
|
|
emptyDir: {}
|
|
----
|
|
|
|
.Reference cloud event consumer service account
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: consumer-sa
|
|
namespace: cloud-events
|
|
----
|
|
|
|
.Reference cloud event consumer service
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
prometheus.io/scrape: "true"
|
|
name: consumer-events-subscription-service
|
|
namespace: cloud-events
|
|
labels:
|
|
app: consumer-service
|
|
spec:
|
|
ports:
|
|
- name: sub-port
|
|
port: 9043
|
|
selector:
|
|
app: consumer
|
|
sessionAffinity: None
|
|
type: ClusterIP
|
|
----
|
|
|