kubesphere-network-extension-operations — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited kubesphere-network-extension-operations (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Operate the network extension and its related resources with kubectl plus the bundled references in this skill. Prefer the live cluster state first, then use the copied extension references here to resolve packaging details, API shapes, and product behavior.
network extensionInstallPlan.spec.config for IPPool or NetworkPolicy feature togglesIPPool resources, namespace bindings, occupancy, and migration flowsNetworkPolicy and namespace-level network isolation policiesnetwork.kubesphere.io IPPool CRDs are still the CRUD source of truthcalicoRead only the references needed for the current request:
Useful rg patterns for the larger references:
rg -n "ippool|networkpol|isolate" skills/kubesphere-network-extension-operations/references/api_doc.md
rg -n "^ /(kapis|apis)/.*(ippool|networkpol)" skills/kubesphere-network-extension-operations/references/swagger.yamlnetworknetworkMulticluster1.3.0global.ippool.type=calicoglobal.ippool.enableglobal.ippool.webhookglobal.networkPolicy.enablekubectl must already be configured for the target cluster.kubectl get extension network
kubectl get installplan network -o yaml
kubectl get extensionversion.kubesphere.io -l kubesphere.io/extension-ref=networkkubectl get crd ippools.crd.projectcalico.orgkubectl get workspace <workspace-name> -o yaml
kubectl get namespace <namespace-name> -o yamlUse fixed resource names:
networknetworkWhen creating or updating an InstallPlan:
metadata.name and spec.extension.name both equal to network.upgradeStrategy: Manual.clusterScheduling only when the user explicitly needs agent placement in member clusters.spec.config unless the user asked for non-default settings.Minimal default example:
apiVersion: kubesphere.io/v1alpha1
kind: InstallPlan
metadata:
name: network
spec:
enabled: true
extension:
name: network
version: <exact-version>
upgradeStrategy: ManualOptional config snippet when the user asks to customize features:
config: |
global:
ippool:
enable: true
type: calico
webhook: true
networkPolicy:
enable: truePrefer this inspection flow before install or upgrade:
kubectl get extension network -o yaml
kubectl get extensionversion network-<exact-version> -o yaml
kubectl get installplan network -o yamlTreat Calico IPPools as the CRUD source of truth:
/apis/crd.projectcalico.org/v1/ippools/kapis/network.kubesphere.io/v1alpha2/ippools/kapis/network.kubesphere.io/v1alpha2/ippools/{name}POST /kapis/network.kubesphere.io/v1alpha2/ippoolmigrationsGET /kapis/network.kubesphere.io/v1alpha2/ippools/{name}/migrateGET /kapis/network.kubesphere.io/v1alpha2/namespaces/{namespace}/ippoolsOperational rules:
network.kubesphere.io.Suggested live inspection commands:
kubectl get ippools.crd.projectcalico.org
kubectl get ippools.crd.projectcalico.org <ippool-name> -o yaml
kubectl get namespace <namespace-name> -o yaml
kubectl get pods -A -o wideUse Kubernetes networking.k8s.io/v1 endpoints for standard NetworkPolicy CRUD:
/kapis/networking.k8s.io/v1/networkpolicies/kapis/networking.k8s.io/v1/namespaces/{namespace}/networkpoliciesPOST /kapis/networking.k8s.io/v1/namespaces/{namespace}/networkpoliciesDELETE /kapis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies/{name}The bundled API document uses inconsistent prose for the annotation key: its status-check text mentions kubesphere.io/workspace-isolate, while its patch examples use kubesphere.io/network-isolate.
Follow this rule:
kubesphere.io/network-isolate: enabled.Typical patch body:
{
"metadata": {
"annotations": {
"kubesphere.io/network-isolate": "enabled"
}
}
}Use the KubeSphere API for project-specific isolation policies:
GET /kapis/network.kubesphere.io/v1alpha1/namespaces/{namespace}/namespacenetworkpoliciesPOST /kapis/network.kubesphere.io/v1alpha1/namespaces/{namespace}/namespacenetworkpoliciesPUT /kapis/network.kubesphere.io/v1alpha1/namespaces/{namespace}/namespacenetworkpolicies/{name}DELETE /kapis/network.kubesphere.io/v1alpha1/namespaces/{namespace}/namespacenetworkpolicies/{name}When creating or filtering these policies, preserve these labels exactly:
kubesphere.io/policy-type=egresskubesphere.io/policy-type=ingresskubesphere.io/policy-traffic=insidekubesphere.io/policy-traffic=outsideWhen the extension install or upgrade is stuck, gather state in this order:
kubectl describe extension network
kubectl describe installplan network
kubectl get installplan network -o jsonpath='{.status.targetNamespace}{"\n"}'
kubectl get pods,svc -n <target-namespace>
kubectl get jobs -A | rg 'helm-upgrade-network|network'
kubectl get pods -n kubesphere-systemIf the InstallPlan already points to a target namespace, inspect the Helm job pod logs and any extension pods in that namespace before changing manifests again.
extension, installplan, Calico IPPools, and the live workspace or namespace objects as the source of truth.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.