You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version of the agent to inject. The literal 'latest' will inject the latest version detected.
30
+
The version of the agent to inject. The literal 'latest' will inject the last version. Partial version matches are supported, e.g. '2' will select the version '2.1.0'.
29
31
Defaults to 'latest'.
30
32
nullable: true
31
33
pattern: ^(latest|(\d+(\.\d+){0,3}(-.+)?))$
@@ -41,7 +43,7 @@ spec:
41
43
properties:
42
44
registry:
43
45
description: |-
44
-
The fully qualified name of the registry to pull agent images from. This registry must be accessible by the pods being injected.
46
+
The fully qualified name of the registry to pull agent images from. This registry must be accessible by the pods being injected and the operator.
45
47
Defaults to the official Contrast container image registry.
46
48
nullable: true
47
49
type: string
@@ -52,7 +54,7 @@ spec:
52
54
nullable: true
53
55
type: string
54
56
pullSecretName:
55
-
description: The name of a pull secret to append to the pod's imagePullSecrets.
57
+
description: The name of a pull secret to append to the pod's imagePullSecrets list.
56
58
nullable: true
57
59
type: string
58
60
pullPolicy:
@@ -71,14 +73,14 @@ spec:
71
73
images:
72
74
description: |-
73
75
Container images to inject the agent into. Glob patterns are supported.
74
-
Defaults to ['*'].
76
+
Selects all containers in Pod.
75
77
items:
76
78
type: string
77
79
type: array
78
80
labels:
79
81
description: |-
80
-
Deployment/StatefulSet/DaemonSet labels whose pods are eligible for agent injection.
81
-
Defaults to selecting everything.
82
+
Deployment/StatefulSet/DaemonSet/DeploymentConfig labels whose pods are eligible for agent injection.
83
+
Selects all workloads in namespace.
82
84
items:
83
85
properties:
84
86
name:
@@ -113,7 +115,7 @@ spec:
113
115
name:
114
116
description: |-
115
117
The name of a AgentConfiguration resource. Must exist within the same namespace.
116
-
Defaults a AgentConfiguration specified by a ClusterAgentConnection.
118
+
Defaults a AgentConfiguration specified by a ClusterAgentConfiguration.
Copy file name to clipboardExpand all lines: src/Contrast.K8s.AgentOperator/Entities/V1Beta1AgentInjector.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ public class AgentInjectorSpec
21
21
publicboolEnabled{get;set;}=true;
22
22
23
23
/// <summary>
24
-
/// The version of the agent to inject. The literal 'latest' will inject the latest version detected.
24
+
/// The version of the agent to inject. The literal 'latest' will inject the last version. Partial version matches are supported, e.g. '2' will select the version '2.1.0'.
25
25
/// Defaults to 'latest'.
26
26
/// </summary>
27
27
[Pattern(RegexConstants.InjectorVersionRegex)]
@@ -59,7 +59,7 @@ public class AgentInjectorSpec
59
59
publicclassAgentInjectorImageSpec
60
60
{
61
61
/// <summary>
62
-
/// The fully qualified name of the registry to pull agent images from. This registry must be accessible by the pods being injected.
62
+
/// The fully qualified name of the registry to pull agent images from. This registry must be accessible by the pods being injected and the operator.
63
63
/// Defaults to the official Contrast container image registry.
64
64
/// </summary>
65
65
publicstring?Registry{get;set;}
@@ -71,7 +71,7 @@ public class AgentInjectorImageSpec
71
71
publicstring?Name{get;set;}
72
72
73
73
/// <summary>
74
-
/// The name of a pull secret to append to the pod's imagePullSecrets.
74
+
/// The name of a pull secret to append to the pod's imagePullSecrets list.
75
75
/// </summary>
76
76
publicstring?PullSecretName{get;set;}
77
77
@@ -87,13 +87,13 @@ public class AgentInjectorSelectorSpec
87
87
{
88
88
/// <summary>
89
89
/// Container images to inject the agent into. Glob patterns are supported.
0 commit comments