Skip to content

Commit 9075436

Browse files
rjferguson21mjnagel
andauthoredAug 5, 2024··
chore: add debug logs for istio injection logic (#602)
## Description Adds debug logs to better understand circumstances where istio injection is not occurring ## Related Issue #604 ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) ## Checklist before merging - [ ] Test, docs, adr added or updated as needed - [ ] [Contributor Guide](https://github.com/defenseunicorns/uds-template-capability/blob/main/CONTRIBUTING.md) followed --------- Co-authored-by: Micah Nagel <micah.nagel@defenseunicorns.com>
1 parent 7fe927e commit 9075436

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎src/pepr/operator/controllers/istio/injection.ts

+12
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export async function enableInjection(pkg: UDSPackage) {
3939
annotations[pkgKey] = "true";
4040

4141
// Apply the updated Namespace
42+
log.debug(`Updating namespace ${pkg.metadata.namespace} with istio injection label`);
4243
await K8s(kind.Namespace).Apply(
4344
{
4445
metadata: {
@@ -52,6 +53,9 @@ export async function enableInjection(pkg: UDSPackage) {
5253

5354
// Kill the pods if we changed the value of the istio-injection label
5455
if (originalInjectionLabel !== labels[injectionLabel]) {
56+
log.debug(
57+
`Attempting pod restart in ${pkg.metadata.namespace} based on istio injection label change`,
58+
);
5559
await killPods(pkg.metadata.namespace, true);
5660
}
5761
}
@@ -86,6 +90,7 @@ export async function cleanupNamespace(pkg: UDSPackage) {
8690
}
8791

8892
// Apply the updated Namespace
93+
log.debug(`Updating namespace ${pkg.metadata.namespace}, removing istio injection labels.`);
8994
await K8s(kind.Namespace).Apply(
9095
{
9196
metadata: {
@@ -99,6 +104,9 @@ export async function cleanupNamespace(pkg: UDSPackage) {
99104

100105
// Kill the pods if we changed the value of the istio-injection label
101106
if (originalInjectionLabel !== labels[injectionLabel]) {
107+
log.debug(
108+
`Attempting pod restart in ${pkg.metadata.namespace} based on istio injection label change`,
109+
);
102110
await killPods(pkg.metadata.namespace, false);
103111
}
104112
}
@@ -118,24 +126,28 @@ async function killPods(ns: string, enableInjection: boolean) {
118126
for (const pod of pods.items) {
119127
// Ignore pods that already have a deletion timestamp
120128
if (pod.metadata?.deletionTimestamp) {
129+
log.debug(`Ignoring Pod ${ns}/${pod.metadata?.name}, already being deleted`);
121130
continue;
122131
}
123132

124133
const foundSidecar = pod.spec?.containers?.find(c => c.name === "istio-proxy");
125134

126135
// If enabling injection, ignore pods that already have the istio sidecar
127136
if (enableInjection && foundSidecar) {
137+
log.debug(`Ignoring Pod ${ns}/${pod.metadata?.name}, already has sidecar`);
128138
continue;
129139
}
130140

131141
// If disabling injection, ignore pods that don't have the istio sidecar
132142
if (!enableInjection && !foundSidecar) {
143+
log.debug(`Ignoring Pod ${ns}/${pod.metadata?.name}, injection disabled`);
133144
continue;
134145
}
135146

136147
// Get the UID of the owner of the pod or default to "other" (shouldn't happen)
137148
const controlledBy = pod.metadata?.ownerReferences?.find(ref => ref.controller)?.uid || "other";
138149
groups[controlledBy] = groups[controlledBy] || [];
150+
log.debug(`Adding Pod ${ns}/${pod.metadata?.name} to ${controlledBy} deletion list.`);
139151
groups[controlledBy].push(pod);
140152
}
141153

0 commit comments

Comments
 (0)
Please sign in to comment.