Skip to content

Commit 10df4a0

Browse files
committed
[CORE-11082] Adding ocp-bpf.tgz to the release process.
1 parent 9adbc5b commit 10df4a0

15 files changed

+2279
-2
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ helm-index:
184184
bin/ocp.tgz: manifests/ocp/ bin/yq
185185
tar czvf $@ -C manifests/ ocp
186186

187+
bin/ocp-bpf.tgz: manifests/ocp-bpf/ bin/yq
188+
tar czvf $@ -C manifests/ ocp-bpf
189+
187190
## Generates release notes for the given version.
188191
.PHONY: release-notes
189192
release-notes:

hack/postrelease/golang/tests/oss/github/calico/github_calico_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var expectedCalicoAssets = []string{
2828
"install-calico-windows.ps1",
2929
"metadata.yaml",
3030
"ocp.tgz",
31+
"ocp-bpf.tgz",
3132
"release-%s.tgz",
3233
"SHA256SUMS",
3334
"tigera-operator-%s.tgz",

manifests/generate.sh

+2
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ ${HELM} template \
110110
# The first two lines are a newline and a yaml separator - remove them.
111111
find ocp/tigera-operator -name "*.yaml" | xargs sed -i -e 1,2d
112112
mv $(find ocp/tigera-operator -name "*.yaml") ocp/ && rm -r ocp/tigera-operator
113+
# Copy the OCP manifests to a new directory for BPF dataplane, without overwriting existing files in the destination.
114+
cp -rn ocp/ ocp-bpf/
113115

114116
##########################################################################
115117
# Build Calico manifest used for in-repo testing. This is largely the same as the

manifests/ocp-bpf/.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
crd*.yaml linguist-generated=true
2+
operator*crd.yaml linguist-generated=true
3+
02*.yaml linguist-generated=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: calico-apiserver
5+
annotations:
6+
openshift.io/node-selector: ""
7+
labels:
8+
name: calico-apiserver
9+
security.openshift.io/scc.podSecurityLabelSync: "false"
10+
pod-security.kubernetes.io/audit: restricted
11+
pod-security.kubernetes.io/enforce: restricted
12+
pod-security.kubernetes.io/warn: restricted
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: calico-system
5+
annotations:
6+
openshift.io/node-selector: ""
7+
labels:
8+
name: calico-system
9+
security.openshift.io/scc.podSecurityLabelSync: "false"
10+
pod-security.kubernetes.io/audit: privileged
11+
pod-security.kubernetes.io/enforce: privileged
12+
pod-security.kubernetes.io/warn: privileged
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: tigera-operator
5+
annotations:
6+
openshift.io/node-selector: ""
7+
labels:
8+
name: tigera-operator
9+
openshift.io/run-level: "0"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
kind: ConfigMap
2+
apiVersion: v1
3+
metadata:
4+
name: kubernetes-services-endpoint
5+
namespace: tigera-operator
6+
data:
7+
KUBERNETES_SERVICE_HOST: "api.<cluster_name>.<base_domain>"
8+
KUBERNETES_SERVICE_PORT: "6443"
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This section configures the Calico API server.
2+
# For more information see {{site.url}}/{{page.version}}/reference/installation/api#operator.tigera.io/v1.APIServer
3+
# and {{site.url}}/{{page.version}}/getting-started/kubernetes/apiserver-preview
4+
apiVersion: operator.tigera.io/v1
5+
kind: APIServer
6+
metadata:
7+
name: default
8+
spec: {}
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This section includes Calico installation configuration.
2+
apiVersion: operator.tigera.io/v1
3+
kind: Installation
4+
metadata:
5+
name: default
6+
spec:
7+
calicoNetwork:
8+
linuxDataplane: BPF
9+
variant: Calico
10+
11+
# List of image pull secrets to use when installing images from a container registry.
12+
# If specified, secrets must be created in the `tigera-operator` namespace.
13+
#imagePullSecrets:
14+
# - name: calico-pull-secret
15+
16+
# Registry to use for pulling Calico images.
17+
# registry: <my-registry>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: operator.openshift.io/v1
2+
kind: Network
3+
metadata:
4+
creationTimestamp: null
5+
name: cluster
6+
spec:
7+
clusterNetwork:
8+
- cidr: 10.128.0.0/14
9+
hostPrefix: 23
10+
externalIP:
11+
policy: {}
12+
networkType: Calico
13+
deployKubeProxy: false
14+
serviceNetwork:
15+
- 172.30.0.0/16
16+
status: {}

manifests/ocp-bpf/crd.projectcalico.org_felixconfigurations.yaml

+1,114
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)