Skip to content

Commit b37c127

Browse files
committed
Add BpfApplication to the list of CRDs in the operator description
Also ran `IMAGE_TAG=v0.5.2 make bundle` and then updated image tags as needed to v0.5.2. Signed-off-by: Andre Fredette <[email protected]>
1 parent 2d0a1e2 commit b37c127

File tree

4 files changed

+25
-23
lines changed

4 files changed

+25
-23
lines changed

bundle/manifests/bpfman-config_v1_configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
apiVersion: v1
22
data:
33
bpfman.agent.healthprobe.addr: :8175
4-
bpfman.agent.image: quay.io/bpfman/bpfman-agent:latest
4+
bpfman.agent.image: quay.io/bpfman/bpfman-agent:v0.5.2
55
bpfman.agent.log.level: info
66
bpfman.agent.metric.addr: 127.0.0.1:8174
7-
bpfman.image: quay.io/bpfman/bpfman:latest
7+
bpfman.image: quay.io/bpfman/bpfman:v0.5.2
88
bpfman.log.level: info
99
bpfman.toml: |
1010
[database]

bundle/manifests/bpfman-operator.clusterserviceversion.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ metadata:
1616
"spec": {
1717
"bytecode": {
1818
"image": {
19-
"url": "quay.io/bpfman-bytecode/go-app-counter:latest"
19+
"url": "quay.io/bpfman-bytecode/go-app-counter:v0.5.2"
2020
}
2121
},
2222
"nodeselector": {},
@@ -97,7 +97,7 @@ metadata:
9797
"bpffunctionname": "test_fentry",
9898
"bytecode": {
9999
"image": {
100-
"url": "quay.io/bpfman-bytecode/fentry:latest"
100+
"url": "quay.io/bpfman-bytecode/fentry:v0.5.2"
101101
}
102102
},
103103
"func_name": "do_unlinkat",
@@ -117,7 +117,7 @@ metadata:
117117
"bpffunctionname": "test_fexit",
118118
"bytecode": {
119119
"image": {
120-
"url": "quay.io/bpfman-bytecode/fexit:latest"
120+
"url": "quay.io/bpfman-bytecode/fexit:v0.5.2"
121121
}
122122
},
123123
"func_name": "do_unlinkat",
@@ -137,7 +137,7 @@ metadata:
137137
"bpffunctionname": "my_kprobe",
138138
"bytecode": {
139139
"image": {
140-
"url": "quay.io/bpfman-bytecode/kprobe:latest"
140+
"url": "quay.io/bpfman-bytecode/kprobe:v0.5.2"
141141
}
142142
},
143143
"func_name": "try_to_wake_up",
@@ -170,7 +170,7 @@ metadata:
170170
"bpffunctionname": "pass",
171171
"bytecode": {
172172
"image": {
173-
"url": "quay.io/bpfman-bytecode/tc_pass:latest"
173+
"url": "quay.io/bpfman-bytecode/tc_pass:v0.5.2"
174174
}
175175
},
176176
"direction": "ingress",
@@ -205,7 +205,7 @@ metadata:
205205
"bpffunctionname": "enter_openat",
206206
"bytecode": {
207207
"image": {
208-
"url": "quay.io/bpfman-bytecode/tracepoint:latest"
208+
"url": "quay.io/bpfman-bytecode/tracepoint:v0.5.2"
209209
}
210210
},
211211
"globaldata": {
@@ -238,7 +238,7 @@ metadata:
238238
"bpffunctionname": "my_uprobe",
239239
"bytecode": {
240240
"image": {
241-
"url": "quay.io/bpfman-bytecode/uprobe:latest"
241+
"url": "quay.io/bpfman-bytecode/uprobe:v0.5.2"
242242
}
243243
},
244244
"func_name": "syscall",
@@ -271,7 +271,7 @@ metadata:
271271
"bpffunctionname": "pass",
272272
"bytecode": {
273273
"image": {
274-
"url": "quay.io/bpfman-bytecode/xdp_pass:latest"
274+
"url": "quay.io/bpfman-bytecode/xdp_pass:v0.5.2"
275275
}
276276
},
277277
"globaldata": {
@@ -295,8 +295,8 @@ metadata:
295295
]
296296
capabilities: Basic Install
297297
categories: OpenShift Optional
298-
containerImage: quay.io/bpfman/bpfman-operator:v0.0.0
299-
createdAt: "2024-10-10T19:42:33Z"
298+
containerImage: quay.io/bpfman/bpfman-operator:v0.5.2
299+
createdAt: "2024-10-15T16:39:38Z"
300300
features.operators.openshift.io/cnf: "false"
301301
features.operators.openshift.io/cni: "false"
302302
features.operators.openshift.io/csi: "true"
@@ -399,8 +399,8 @@ spec:
399399
`warn`, `error`, and `fatal`, defaults to `info`\n- `bpfman.agent.log.level`:
400400
the log level for the bpfman-agent currently supports `info`, `debug`, and `trace`
401401
\n\nThe bpfman operator deploys eBPF programs via CRDs. The following CRDs are
402-
currently available, \n\n- XdpProgram\n- TcProgram\n- TracepointProgram\n- KprobeProgram\n-
403-
UprobeProgram\n- FentryProgram\n- FexitProgram\n\n## More information\n\nPlease
402+
currently available, \n\n- BpfApplication\n- XdpProgram\n- TcProgram\n - TracepointProgram\n-
403+
KprobeProgram\n- UprobeProgram\n- FentryProgram\n- FexitProgram\n\n ## More information\n\nPlease
404404
checkout the [bpfman community website](https://bpfman.io/) for more information."
405405
displayName: Bpfman Operator
406406
icon:
@@ -1063,7 +1063,7 @@ spec:
10631063
env:
10641064
- name: GO_LOG
10651065
value: debug
1066-
image: quay.io/bpfman/bpfman-operator:latest
1066+
image: quay.io/bpfman/bpfman-operator:v0.5.2
10671067
imagePullPolicy: IfNotPresent
10681068
livenessProbe:
10691069
httpGet:

config/bpfman-operator-deployment/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: quay.io/bpfman/bpfman-operator
77
newName: quay.io/bpfman/bpfman-operator
8-
newTag: latest
8+
newTag: v0.5.2

config/manifests/bases/bpfman-operator.clusterserviceversion.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,15 @@ spec:
101101
Configuration\n\nThe `bpfman-config` configmap is automatically created in the `bpfman`
102102
namespace and used to configure the bpfman deployment.\n\nTo edit the config simply
103103
run\n\n```bash\nkubectl edit cm bpfman-config\n```\n\nThe following fields are adjustable\n\n-
104-
`bpfman.agent.image`: The image used for the bpfman-agent`\n-
105-
`bpfman.image`: The image used for bpfman`\n-
106-
`bpfman.log.level`: the log level for bpfman, currently supports
107-
`debug`, `info`, `warn`, `error`, and `fatal`, defaults to `info`\n- `bpfman.agent.log.level`: the log level for the bpfman-agent currently supports `info`, `debug`, and `trace` \n\nThe bpfman operator
108-
deploys eBPF programs via CRDs. The following CRDs are currently available, \n\n-
109-
XdpProgram\n- TcProgram\n- TracepointProgram\n- KprobeProgram\n- UprobeProgram\n- FentryProgram\n- FexitProgram\n\n## More information\n\nPlease
110-
checkout the [bpfman community website](https://bpfman.io/) for more information."
104+
`bpfman.agent.image`: The image used for the bpfman-agent`\n- `bpfman.image`: The
105+
image used for bpfman`\n- `bpfman.log.level`: the log level for bpfman, currently
106+
supports `debug`, `info`, `warn`, `error`, and `fatal`, defaults to `info`\n-
107+
`bpfman.agent.log.level`: the log level for the bpfman-agent currently supports
108+
`info`, `debug`, and `trace` \n\nThe bpfman operator deploys eBPF programs via CRDs.
109+
The following CRDs are currently available, \n\n- BpfApplication\n- XdpProgram\n- TcProgram\n
110+
- TracepointProgram\n- KprobeProgram\n- UprobeProgram\n- FentryProgram\n- FexitProgram\n\n
111+
## More information\n\nPlease checkout the [bpfman community website](https://bpfman.io/)
112+
for more information."
111113
displayName: Bpfman Operator
112114
icon:
113115
- base64data: |

0 commit comments

Comments
 (0)