diff --git a/README.md b/README.md index 7ed0e4be9..0aa5d9020 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,7 @@ For information about alternative licensing arrangements, contact info@platform9 - **OpenStack Environment**: - OpenStack-compliant cloud target - Network and storage access + - Credentials can be supplied as either standard `clouds.yaml` (preferred — supports OpenStack Application Credentials and per-service microversion configuration) or the legacy per-field `OS_*` Secret keys. See [`docs/credentials.md`](docs/credentials.md) for the operator runbook. - **Network Connectivity**: - Access to vCenter, ESXi, and OpenStack API endpoints diff --git a/deploy/00crds.yaml b/deploy/00crds.yaml index e9963a2dd..9f5d5e894 100644 --- a/deploy/00crds.yaml +++ b/deploy/00crds.yaml @@ -1570,8 +1570,11 @@ spec: scope: Namespaced versions: - additionalPrinterColumns: - - jsonPath: .status.openstackValidationStatus - name: Status + - jsonPath: .status.conditions[?(@.type=="CredentialsValidated")].status + name: Validated + type: string + - jsonPath: .status.conditions[?(@.type=="CredentialsValidated")].reason + name: Reason type: string - jsonPath: .spec.secretRef.name name: Secret Name @@ -1608,6 +1611,14 @@ spec: spec: description: OpenstackCredsSpec defines the desired state of OpenstackCreds properties: + cloudName: + description: |- + CloudName selects which cloud entry to use when SecretRef points to a Secret + containing a clouds.yaml key. Ignored when the Secret contains only legacy + OS_* keys. When omitted with a single-entry clouds.yaml, that entry is used. + When omitted with a multi-entry clouds.yaml, the resource reports + CredentialsParsed=False with Reason=AmbiguousCloudName. + type: string flavors: description: Flavors is the list of available flavors in openstack items: @@ -1769,6 +1780,69 @@ spec: status: description: OpenstackCredsStatus defines the observed state of OpenstackCreds properties: + conditions: + description: |- + Conditions represent the latest available observations of an OpenstackCreds's state. + Standard Condition Types include CredentialsParsed, CredentialsValidated, + RolesSufficient, Expiring, and Expired. + items: + description: Condition contains details for one aspect of the current + state of this API Resource. + properties: + lastTransitionTime: + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + format: date-time + type: string + message: + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. + maxLength: 32768 + type: string + observedGeneration: + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date + with respect to the current state of the instance. + format: int64 + minimum: 0 + type: integer + reason: + description: |- + reason contains a programmatic identifier indicating the reason for the condition's last transition. + Producers of specific condition types may define expected values and meanings for this field, + and whether the values are considered a guaranteed API. + The value should be a CamelCase string. + This field may not be empty. + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: type of condition in CamelCase or in foo.example.com/CamelCase. + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map openstack: description: Openstack is the OpenStack configuration for the openstackcreds properties: @@ -1838,12 +1912,21 @@ spec: type: array type: object openstackValidationMessage: - description: OpenStackValidationMessage is the message associated - with the OpenStack validation + description: |- + OpenStackValidationMessage is the legacy summary message string, + superseded by Conditions[*].Message. Populated as a derived view for + back-compat alongside OpenStackValidationStatus. type: string openstackValidationStatus: - description: OpenStackValidationStatus is the status of the OpenStack - validation + description: |- + OpenStackValidationStatus is the legacy summary status string. It is + superseded by Conditions (the "CredentialsValidated" Type). The + controller continues to populate this field as a derived view of + Conditions so existing UI and API consumers (UI components reading + openstackValidationStatus, pkg/vpwned proxy, etc.) keep working through + the Conditions migration window. New consumers should read Conditions; + this field will be removed in a future release once downstream + consumers migrate. type: string type: object type: object diff --git a/deploy/installer.yaml b/deploy/installer.yaml index 22dd30e1e..b308ac322 100644 --- a/deploy/installer.yaml +++ b/deploy/installer.yaml @@ -1570,8 +1570,11 @@ spec: scope: Namespaced versions: - additionalPrinterColumns: - - jsonPath: .status.openstackValidationStatus - name: Status + - jsonPath: .status.conditions[?(@.type=="CredentialsValidated")].status + name: Validated + type: string + - jsonPath: .status.conditions[?(@.type=="CredentialsValidated")].reason + name: Reason type: string - jsonPath: .spec.secretRef.name name: Secret Name @@ -1608,6 +1611,14 @@ spec: spec: description: OpenstackCredsSpec defines the desired state of OpenstackCreds properties: + cloudName: + description: |- + CloudName selects which cloud entry to use when SecretRef points to a Secret + containing a clouds.yaml key. Ignored when the Secret contains only legacy + OS_* keys. When omitted with a single-entry clouds.yaml, that entry is used. + When omitted with a multi-entry clouds.yaml, the resource reports + CredentialsParsed=False with Reason=AmbiguousCloudName. + type: string flavors: description: Flavors is the list of available flavors in openstack items: @@ -1769,6 +1780,69 @@ spec: status: description: OpenstackCredsStatus defines the observed state of OpenstackCreds properties: + conditions: + description: |- + Conditions represent the latest available observations of an OpenstackCreds's state. + Standard Condition Types include CredentialsParsed, CredentialsValidated, + RolesSufficient, Expiring, and Expired. + items: + description: Condition contains details for one aspect of the current + state of this API Resource. + properties: + lastTransitionTime: + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + format: date-time + type: string + message: + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. + maxLength: 32768 + type: string + observedGeneration: + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date + with respect to the current state of the instance. + format: int64 + minimum: 0 + type: integer + reason: + description: |- + reason contains a programmatic identifier indicating the reason for the condition's last transition. + Producers of specific condition types may define expected values and meanings for this field, + and whether the values are considered a guaranteed API. + The value should be a CamelCase string. + This field may not be empty. + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: type of condition in CamelCase or in foo.example.com/CamelCase. + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map openstack: description: Openstack is the OpenStack configuration for the openstackcreds properties: @@ -1838,12 +1912,21 @@ spec: type: array type: object openstackValidationMessage: - description: OpenStackValidationMessage is the message associated - with the OpenStack validation + description: |- + OpenStackValidationMessage is the legacy summary message string, + superseded by Conditions[*].Message. Populated as a derived view for + back-compat alongside OpenStackValidationStatus. type: string openstackValidationStatus: - description: OpenStackValidationStatus is the status of the OpenStack - validation + description: |- + OpenStackValidationStatus is the legacy summary status string. It is + superseded by Conditions (the "CredentialsValidated" Type). The + controller continues to populate this field as a derived view of + Conditions so existing UI and API consumers (UI components reading + openstackValidationStatus, pkg/vpwned proxy, etc.) keep working through + the Conditions migration window. New consumers should read Conditions; + this field will be removed in a future release once downstream + consumers migrate. type: string type: object type: object diff --git a/docs/credentials.md b/docs/credentials.md new file mode 100644 index 000000000..4068da57b --- /dev/null +++ b/docs/credentials.md @@ -0,0 +1,233 @@ +# OpenStack credentials for vJailbreak + +This guide describes how operators configure destination-OpenStack credentials for a vJailbreak migration. Two formats are supported: + +1. **`clouds.yaml`** (preferred) — the standard OpenStack credential format used by `openstack` CLI, openstacksdk, and other ecosystem tooling. Unlocks **OpenStack Application Credentials** and **per-service microversion configuration**. +2. **Legacy `OS_*` Secret keys** — the original vJailbreak credential schema. Continues to work; no change required for existing deployments. + +## Quick choice + +| Use case | Pick | +|---|---| +| Already maintaining a `clouds.yaml` for OpenStack tooling | clouds.yaml | +| Want revocable, time-bound, role-subset credentials (Application Credentials) | clouds.yaml | +| Need to configure a destination microversion (e.g., to satisfy a non-default `compute_api_version`) | clouds.yaml | +| Have an existing OS_*-keyed Secret and migration runbook | OS_* (no change required) | + +## clouds.yaml — recommended setup + +### Step 1 — Create a role for vJailbreak (optional but recommended) + +```bash +openstack role create vjailbreak-migrator +openstack role add --project --user vjailbreak-migrator +openstack role add --project --user member +``` + +### Step 2 — Create an Application Credential (recommended) + +Application Credentials provide: + +- Revocation independent of the underlying user account. +- Role-subset scoping — grant only the roles vJailbreak needs. +- Optional `expires_at` time bound. +- No user password stored at rest in Kubernetes. + +```bash +openstack application credential create vjailbreak-svc \ + --role member \ + --role vjailbreak-migrator \ + --unrestricted=false \ + --expiration 2026-12-31T23:59:59Z \ + --description "vJailbreak migration appliance auth" +``` + +The `id` and `secret` are shown once. Record them now. + +Minimum required Keystone version: **Queens (2018)**. + +### Step 3 — Build `clouds.yaml` + +```yaml +clouds: + destination: + auth_type: v3applicationcredential + auth: + auth_url: https://keystone.example.com:5000/v3 + application_credential_id: + application_credential_secret: + region_name: RegionOne + interface: public + compute_api_version: "2.95" + volume_api_version: "3.70" +``` + +Username/password auth is also supported (`auth_type: v3password` with `username`, `password`, `project_name`, `user_domain_name`, `project_domain_name` under `auth`). + +### Step 4 — Create the Kubernetes Secret + +```bash +kubectl create secret generic openstack-creds-clouds \ + --namespace migration-system \ + --from-file=clouds.yaml=./clouds.yaml +``` + +### Step 5 — Create the `OpenstackCreds` resource + +```yaml +apiVersion: vjailbreak.k8s.pf9.io/v1alpha1 +kind: OpenstackCreds +metadata: + name: destination-creds + namespace: migration-system +spec: + secretRef: + name: openstack-creds-clouds + namespace: migration-system + cloudName: destination +``` + +```bash +kubectl apply -f openstackcreds.yaml +``` + +### Step 6 — Verify validation + +```bash +kubectl -n migration-system get openstackcreds destination-creds -o yaml +``` + +Expected `status.conditions`: + +- `CredentialsParsed=True` (Reason: `Parsed`) +- `CredentialsValidated=True` (Reason: `AuthSucceeded`) +- `Expiring=False` (Reason: `NotApplicable` for non-App-Cred auth; `Within30Days` / `Within7Days` when an App Cred's expiration is near) +- `Expired=False` (Reason: `Active`) + +A resource showing the positive conditions above is ready for migration use. + +## Multi-cloud `clouds.yaml` + +A single Secret may declare multiple clouds and back multiple `OpenstackCreds` resources, each selecting a different cloud entry via `cloudName`: + +```yaml +clouds: + dc-paris: + auth_type: v3applicationcredential + auth: { ... } + region_name: paris + dc-frankfurt: + auth_type: v3applicationcredential + auth: { ... } + region_name: frankfurt +``` + +```yaml +--- +apiVersion: vjailbreak.k8s.pf9.io/v1alpha1 +kind: OpenstackCreds +metadata: { name: paris-creds } +spec: + secretRef: { name: openstack-multi-cloud } + cloudName: dc-paris +--- +apiVersion: vjailbreak.k8s.pf9.io/v1alpha1 +kind: OpenstackCreds +metadata: { name: frankfurt-creds } +spec: + secretRef: { name: openstack-multi-cloud } + cloudName: dc-frankfurt +``` + +When `clouds.yaml` contains a single cloud entry, `cloudName` may be omitted. When it contains multiple entries and `cloudName` is unset, the resource reports `CredentialsParsed=False` with `Reason: AmbiguousCloudName` and the available entries listed in the message. + +## Microversion configuration + +`clouds.yaml` per-service API version values are honored as an **operator-configurable floor** over internal hardcoded microversions: + +```yaml +clouds: + destination: + compute_api_version: "2.95" # honored as floor for Nova + volume_api_version: "3.70" # honored as floor for Cinder + image_api_version: "2.16" # honored as floor for Glance + network_api_version: "2.0" # honored as floor for Neutron + identity_api_version: "3" # honored as floor for Keystone +``` + +If the configured version is higher than the internal hardcoded value for a given operation, the configured value is used. If lower or absent, the internal hardcoded value applies (so misconfiguring a low version cannot break operations that require a higher one — for example, multi-attach volume attach always uses at least microversion 2.60). + +## Application Credential rotation + +The controller watches the credential Secret. To rotate: + +```bash +# Create a replacement Application Credential +openstack application credential create vjailbreak-svc-2 \ + --role member --role vjailbreak-migrator \ + --expiration 2027-06-30T23:59:59Z + +# Update the Secret in place with the new id/secret +kubectl create secret generic openstack-creds-clouds \ + --namespace migration-system \ + --from-file=clouds.yaml=./clouds.yaml \ + --dry-run=client -o yaml | kubectl apply -f - +``` + +Re-validation triggers automatically within seconds via the Secret watch. Already-running migrations continue with the auth token they acquired at start; subsequent migrations and the next validation use the rotated credential. + +Revoke the old credential when ready: + +```bash +openstack application credential delete vjailbreak-svc +``` + +## Inline CA certificates + +When the destination Keystone is served by a private CA, supply the certificate inline in `clouds.yaml`: + +```yaml +clouds: + destination: + auth_url: https://keystone.example.com:5000/v3 + cacert: | + -----BEGIN CERTIFICATE----- + + -----END CERTIFICATE----- + verify: true +``` + +Filesystem paths (e.g., `cacert: /etc/ssl/certs/...`) are not resolvable inside the controller pod and are rejected with `CredentialsParsed=False, Reason=CacertPathUnresolvable`. + +## Legacy `OS_*` keys (back-compat) + +Existing deployments using OS_*-keyed Secrets continue to work without changes: + +```yaml +apiVersion: v1 +kind: Secret +metadata: + name: openstack-creds-legacy + namespace: migration-system +type: Opaque +stringData: + OS_AUTH_URL: https://keystone.example.com:5000/v3 + OS_USERNAME: admin + OS_PASSWORD: + OS_DOMAIN_NAME: Default + OS_REGION_NAME: RegionOne + OS_TENANT_NAME: migration-project + OS_INTERFACE: public + OS_IDENTITY_API_VERSION: "3" +``` + +`cloudName` on the `OpenstackCreds` resource is ignored when the Secret has only OS_* keys. When a Secret contains both `clouds.yaml` and OS_* keys, `clouds.yaml` takes precedence. + +## Required roles + +vJailbreak requires the destination credential to grant at least: + +- The standard `member` role on the destination project. +- Sufficient permissions for vJailbreak's destination-side discovery: Cinder `scheduler-stats/get_pools` and `os-services` (admin-equivalent by default OpenStack policy), Nova `os-hypervisors` (admin-equivalent), and cross-project network read on Neutron (admin-equivalent). + +In many deployments operators grant `admin` on the destination project for simplicity during migration windows, then revoke after cutover. For tighter scoping, ship a custom `vjailbreak-migrator` role with policy overrides on the relevant Cinder/Nova/Neutron endpoints. diff --git a/graphify-out/cache/ast/01bc9f1aba6df58b4fcdc5776ea34f92cc34ff29115f457fa6224710b0408b6f.json b/graphify-out/cache/ast/01bc9f1aba6df58b4fcdc5776ea34f92cc34ff29115f457fa6224710b0408b6f.json new file mode 100644 index 000000000..3452db760 --- /dev/null +++ b/graphify-out/cache/ast/01bc9f1aba6df58b4fcdc5776ea34f92cc34ff29115f457fa6224710b0408b6f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L307"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L357"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L487"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L505"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L560"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L607"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L648"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L692"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L716"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L780"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L307", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L357", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L487", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L505", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L560", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L607", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L648", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L692", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L780", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L126", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L265", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L287", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L300", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L371", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L380", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L561", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L565", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L569", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L574", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L578", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L586", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L685", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L739", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L81"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L86"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L96"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L102"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L110"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L115"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L122"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L130"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L135"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L137"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L141"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L147"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L150"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L165"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L171"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L174"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L177"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L226"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L231"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L250"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L255"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L263"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L272"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L278"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L281"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L288"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L289"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L289"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L290"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L293"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L301"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L312"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L313"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L314"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L315"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L321"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L321"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L322"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L326"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L327"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L327"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L328"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L335"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L335"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L336"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L337"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L342"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L343"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L344"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L345"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L348"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L359"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L361"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L366"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L366"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L370"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L384"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L385"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L396"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L397"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L404"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L406"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L408"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L408"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L438"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L439"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L443"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L444"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L447"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L454"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L455"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L456"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L461"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L470"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L475"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L491"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L495"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L515"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L515"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L518"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L521"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L523"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L524"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L536"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L537"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L538"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L556"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L557"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L595"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L597"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L597"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L598"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L600"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L602"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L609"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L610"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L611"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L612"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L619"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L621"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L622"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L630"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L632"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L633"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L637"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L641"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L642"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L643"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L651"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L653"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L654"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L657"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L658"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L658"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L659"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L667"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L669"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L670"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L674"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L678"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L680"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L681"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L699"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L702"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L711"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L717"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L723"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L728"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L733"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L734"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L738"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L745"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L749"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L752"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L754"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L759"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L761"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L765"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L767"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L769"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L771"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L773"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L775"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L781"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L782"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L783"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L784"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/05d936ccec51e7e3276cdb9b65d90106556b27399eeb842af1d764ca33fb25e6.json b/graphify-out/cache/ast/05d936ccec51e7e3276cdb9b65d90106556b27399eeb842af1d764ca33fb25e6.json new file mode 100644 index 000000000..109ff50e3 --- /dev/null +++ b/graphify-out/cache/ast/05d936ccec51e7e3276cdb9b65d90106556b27399eeb842af1d764ca33fb25e6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "label": "migrationplan_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1"}, {"id": "controller_migrationplanreconciler", "label": "MigrationPlanReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77"}, {"id": "controller_migrationplanreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106"}, {"id": "controller_migrationplanreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161"}, {"id": "controller_migrationplanreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177"}, {"id": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "label": ".getMigrationTemplateAndCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197"}, {"id": "controller_migrationplanreconciler_reconcilepostmigration", "label": ".reconcilePostMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228"}, {"id": "controller_migrationplanreconciler_renamevm", "label": ".renameVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302"}, {"id": "controller_migrationplanreconciler_movevmtofolder", "label": ".moveVMToFolder()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334"}, {"id": "controller_migrationplan_controller_createvcenterclientanddc", "label": "createVCenterClientAndDC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373"}, {"id": "controller_migrationplan_controller_extractvcentercredentials", "label": "extractVCenterCredentials()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403"}, {"id": "controller_migrationplan_controller_getvmwaremachineforvm", "label": "GetVMwareMachineForVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426"}, {"id": "controller_migrationplanreconciler_reconcilemigrationplanjob", "label": ".ReconcileMigrationPlanJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471"}, {"id": "controller_migrationplanreconciler_checkandhandlepausedplan", "label": ".checkAndHandlePausedPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765"}, {"id": "controller_migrationplanreconciler_processmigrationphases", "label": ".processMigrationPhases()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778"}, {"id": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "label": ".handleRDMDiskMigrationError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843"}, {"id": "controller_migrationplanreconciler_updatemigrationplanstatus", "label": ".UpdateMigrationPlanStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900"}, {"id": "controller_migrationplanreconciler_createmigration", "label": ".CreateMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932"}, {"id": "controller_migrationplanreconciler_createjob", "label": ".CreateJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1041"}, {"id": "controller_migrationplanreconciler_createfirstbootconfigmap", "label": ".CreateFirstbootConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1286"}, {"id": "controller_migrationplanreconciler_createmigrationconfigmap", "label": ".CreateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1321"}, {"id": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "label": ".buildNewMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1350"}, {"id": "controller_migrationplan_controller_resolvevirtiodriverurl", "label": "resolveVirtioDriverURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1420"}, {"id": "controller_migrationplanreconciler_processadvancedoptions", "label": ".processAdvancedOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1427"}, {"id": "controller_migrationplan_controller_computesourcevmkey", "label": "computeSourceVMKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1466"}, {"id": "controller_migrationplan_controller_vmkeydisplayname", "label": "vmKeyDisplayName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1484"}, {"id": "controller_migrationplanreconciler_buildbaseconfigmapdata", "label": ".buildBaseConfigMapData()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1498"}, {"id": "controller_migrationplanreconciler_setmigrationspecificfields", "label": ".setMigrationSpecificFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1535"}, {"id": "controller_migrationplanreconciler_determineandsettargetflavor", "label": ".determineAndSetTargetFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1541"}, {"id": "controller_migrationplanreconciler_setosfamilyandstoragefields", "label": ".setOSFamilyAndStorageFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1586"}, {"id": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "label": ".setImageMetadataFromProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1619"}, {"id": "controller_migrationplanreconciler_resolveimageprofiles", "label": ".resolveImageProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1674"}, {"id": "controller_migrationplanreconciler_updatemigrationconfigmap", "label": ".updateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1719"}, {"id": "controller_migrationplanreconciler_createresource", "label": ".createResource()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1741"}, {"id": "controller_migrationplanreconciler_checkstatussuccess", "label": ".checkStatusSuccess()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1754"}, {"id": "controller_migrationplanreconciler_reconcilemapping", "label": ".reconcileMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1787"}, {"id": "controller_migrationplan_controller_getdatastoresforvolumemapping", "label": "getDatastoresForVolumeMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1823"}, {"id": "controller_migrationplanreconciler_reconcilenetwork", "label": ".reconcileNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1838"}, {"id": "controller_migrationplanreconciler_reconcilestorage", "label": ".reconcileStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1911"}, {"id": "controller_migrationplanreconciler_triggermigration", "label": ".TriggerMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1957"}, {"id": "controller_migrationplanreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2099"}, {"id": "controller_migrationplanreconciler_validatevddkpresence", "label": ".validateVDDKPresence()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2135"}, {"id": "controller_migrationplan_controller_mergelabels", "label": "MergeLabels()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2231"}, {"id": "controller_migrationplanreconciler_migraterdmdisks", "label": ".migrateRDMdisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2243"}, {"id": "controller_migrationplanreconciler_validatevmos", "label": ".validateVMOS()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2386"}, {"id": "controller_migrationplanreconciler_validatemigrationplanvms", "label": ".validateMigrationPlanVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2407"}, {"id": "controller_migrationplanreconciler_updatemigrationphasewithretry", "label": ".updateMigrationPhaseWithRetry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2468"}, {"id": "controller_migrationplanreconciler_isvmsucceededinplan", "label": ".isVMSucceededInPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2522"}, {"id": "controller_migrationplanreconciler_markmigrationvalidationfailed", "label": ".markMigrationValidationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2538"}, {"id": "controller_migrationplanreconciler_markmigrationfailed", "label": ".markMigrationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2552"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os_user", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strconv", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_go_logr_logr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_verrors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_vpwned_sdk_storage_netapp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vcenter", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_batch_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_resource", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_util_wait", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_utils_ptr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L55", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L56", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L57", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L58", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L59", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L60", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_event", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L61", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L62", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L63", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L65", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L66", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L67", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplanreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_renamevm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1041", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1286", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1321", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1350", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1420", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1427", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1466", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1484", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1498", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1535", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1541", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1586", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1619", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1674", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1719", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createresource", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1741", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1754", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1787", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1823", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1838", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1911", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_triggermigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1957", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2099", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2135", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_mergelabels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2231", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2243", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevmos", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2386", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2407", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2468", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2522", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2538", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2552", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L155", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilenormal", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L169", "weight": 1.0}, {"source": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L213", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L253", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L258", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L267", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_renamevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L288", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L294", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L557", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L594", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L606", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L618", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L659", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L711", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L713", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_triggermigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L722", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L742", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L795", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L813", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L855", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L881", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplan_controller_mergelabels", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L990", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L991", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1277", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createfirstbootconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1311", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1338", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1343", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1362", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1364", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1369", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1374", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1389", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1391", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1395", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1399", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1411", "weight": 1.0}, {"source": "controller_migrationplan_controller_computesourcevmkey", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1474", "weight": 1.0}, {"source": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1637", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1793", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1804", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1811", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1812", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1985", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2030", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2047", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2052", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2056", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2061", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2070", "weight": 1.0}, {"source": "controller_migrationplanreconciler_migraterdmdisks", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2270", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2423", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_validatevmos", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2428", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2459", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationvalidationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2546", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2560", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L107"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L110"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L111"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L115"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "ValidateMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L118"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L120"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L125"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L127"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L128"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L132"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L133"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "NewMigrationPlanScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L137"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L143"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L148"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L154"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L167"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L171"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L189"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L190"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L191"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L201"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L204"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L208"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L209"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L214"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L218"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L222"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L232"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L235"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L241"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L245"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L255"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L260"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L264"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L269"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L275"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L279"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L280"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L282"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L289"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L295"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L308"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L312"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L314"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L315"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L317"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L320"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "RenameVM", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L321"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L324"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L327"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L330"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L340"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L344"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L348"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L349"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMWithDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L350"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L351"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L353"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L356"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L359"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "MovetoFolder", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L361"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L363"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L366"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L367"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L369"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L377"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L378"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "VCenterClientBuilder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L380"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L382"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L383"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L385"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L388"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L392"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L393"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L395"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L396"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L398"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L406"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L411"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L416"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L419"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L420"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L421"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L428"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L430"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L435"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L440"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L441"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L443"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L448"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L454"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L458"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L461"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L463"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L476"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L478"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L480"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L484"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L492"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L495"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L496"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L497"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L501"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L528"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L532"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L534"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L536"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L537"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L548"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L553"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L559"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L563"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L565"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L567"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L570"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L572"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L577"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L586"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L592"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L598"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L608"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L614"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L622"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L635"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L641"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L647"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L660"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L666"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L674"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L675"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L679"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L680"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L684"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L685"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L687"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L688"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L699"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L725"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L728"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L734"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L737"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L738"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L739"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L758"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "IsMigrationPlanPaused", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L766"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L771"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L772"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L789"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L794"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L796"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L801"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L805"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L815"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L816"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L819"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L821"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L824"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L825"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L828"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L832"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L846"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L849"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L850"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L856"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L867"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L870"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L871"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L873"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L886"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L887"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L888"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L892"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L893"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L894"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L903"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L906"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L936"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L938"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L940"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L942"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L944"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L951"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L952"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L954"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L956"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L962"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L965"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "SanitizeLabelValue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L970"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L987"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L993"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L999"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1002"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1004"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1012"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1015"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1020"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1022"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1026"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1033"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1035"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1052"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1056"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1058"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetJobNameForVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1060"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1062"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1084"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1089"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1096"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1098"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1102"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1103"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1104"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1104"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1133"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1140"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1172"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1180"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1213"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1214"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1215"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1218"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1219"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1220"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1231"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1240"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1259"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1268"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1278"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1278"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1279"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1279"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1289"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1291"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1293"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1295"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetFirstbootConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1297"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1299"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1300"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1301"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1301"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1313"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1313"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1314"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1329"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1331"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetMigrationConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1333"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1336"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1337"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1360"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1360"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1366"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1377"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1379"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1380"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1382"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1385"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1413"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1413"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1414"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1435"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1440"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1441"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1446"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1447"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1448"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1453"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1454"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1455"}, {"caller_nid": "controller_migrationplan_controller_computesourcevmkey", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1468"}, {"caller_nid": "controller_migrationplan_controller_vmkeydisplayname", "callee": "LastIndex", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1485"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1512"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1513"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1514"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1515"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1517"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1519"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1522"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1524"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1525"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1527"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1528"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1529"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1530"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1531"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1552"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1554"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1561"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "FilterFlavorsByAvailabilityZone", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1562"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1565"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1569"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1571"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1577"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1579"}, {"caller_nid": "controller_migrationplanreconciler_setosfamilyandstoragefields", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1593"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1627"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1632"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1634"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1639"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1641"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1646"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1647"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1649"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1653"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1660"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1664"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1666"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1668"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1682"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1687"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1688"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1689"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1692"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1696"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1704"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1723"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1725"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1726"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1728"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1730"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1732"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1734"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1735"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1735"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1736"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1742"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1744"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1746"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1748"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1760"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1762"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1768"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1770"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1771"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1776"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "IsStatusConditionTrue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1780"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1781"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1795"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1798"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1802"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1806"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1814"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1825"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1825"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1827"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1829"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1847"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1853"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1855"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1862"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1864"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1874"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1880"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1885"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1892"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1895"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1896"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1898"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1900"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1902"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1902"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1904"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1919"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1921"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1927"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1932"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1938"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1941"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1942"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1944"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1946"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1948"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1948"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1950"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1966"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1975"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetOpenStackClients", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1977"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1979"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "FindHotplugBaseFlavor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1982"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1984"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1986"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1990"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1994"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1997"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2005"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2007"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2009"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2012"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "MergeFrom", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2021"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2021"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Patch", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2023"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2024"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2026"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2032"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2038"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2039"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2043"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2046"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2048"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2054"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2058"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2081"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2081"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2087"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2088"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2100"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2100"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Owns", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2100"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2100"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2100"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2102"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Current", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2140"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "ReadDir", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2148"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2150"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2158"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2164"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2167"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2170"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2170"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2171"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2174"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2177"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2178"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2183"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2188"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2191"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2192"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2192"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2193"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2197"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2204"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2210"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2211"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2213"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2214"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2220"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2220"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2223"}, {"caller_nid": "controller_migrationplan_controller_mergelabels", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2232"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2245"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2247"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2249"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2250"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2255"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2256"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2260"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2264"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2271"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2271"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2271"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2272"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2277"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2277"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2280"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2280"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2284"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2284"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2284"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2285"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "ValidateRDMDiskFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2291"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2293"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2297"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2299"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2306"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2306"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2313"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2315"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2316"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2323"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2323"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2332"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2334"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2335"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2336"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2336"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2341"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2344"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2344"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2346"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2359"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2360"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2368"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2369"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2374"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2378"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2388"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2391"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2402"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2414"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2415"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2419"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2419"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2420"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2420"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2425"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2433"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2437"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2440"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2441"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2442"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2442"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2446"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2447"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2449"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2452"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2453"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2453"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2457"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2458"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2460"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "PollUntilContextTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2476"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2482"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2487"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2495"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2499"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2501"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2506"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2507"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2507"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2511"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2524"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2525"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2544"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2547"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2558"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/17a14629d1b606109bda909287117739ee4aafcecbb5bbf6a71de9785943a572.json b/graphify-out/cache/ast/17a14629d1b606109bda909287117739ee4aafcecbb5bbf6a71de9785943a572.json new file mode 100644 index 000000000..f6a4b24b6 --- /dev/null +++ b/graphify-out/cache/ast/17a14629d1b606109bda909287117739ee4aafcecbb5bbf6a71de9785943a572.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "label": "validate.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L1"}, {"id": "openstack_validationresult", "label": "ValidationResult", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L30"}, {"id": "openstack_validate_autherrormessage", "label": "authErrorMessage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L42"}, {"id": "openstack_validate_validate", "label": "Validate()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L65"}, {"id": "openstack_validate_validatefromcloudsyaml", "label": "validateFromCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L199"}, {"id": "openstack_validate_getcredentialsfromsecret", "label": "getCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L287"}, {"id": "openstack_validate_verifycredentialsmatchcurrentenvironment", "label": "verifyCredentialsMatchCurrentEnvironment()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L354"}, {"id": "openstack_postvalidationresources", "label": "PostValidationResources", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L399"}, {"id": "openstack_validate_fetchresourcespostvalidation", "label": "FetchResourcesPostValidation()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L406"}, {"id": "openstack_validate_ensurelogger", "label": "ensureLogger()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L446"}], "edges": [{"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servers", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log_zap", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validationresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L30", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_autherrormessage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L42", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_validate", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L65", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_validatefromcloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L199", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_getcredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L287", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_verifycredentialsmatchcurrentenvironment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L354", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_postvalidationresources", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L399", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_fetchresourcespostvalidation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L406", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_ensurelogger", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L446", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_ensurelogger", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L67", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_validatefromcloudsyaml", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L90", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_getcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L94", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_autherrormessage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L140", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_verifycredentialsmatchcurrentenvironment", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L175", "weight": 1.0}, {"source": "openstack_validate_validatefromcloudsyaml", "target": "openstack_validate_autherrormessage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L234", "weight": 1.0}, {"source": "openstack_validate_validatefromcloudsyaml", "target": "openstack_validate_verifycredentialsmatchcurrentenvironment", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L247", "weight": 1.0}, {"source": "openstack_validate_fetchresourcespostvalidation", "target": "openstack_validate_ensurelogger", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L411", "weight": 1.0}, {"source": "openstack_validate_fetchresourcespostvalidation", "target": "openstack_validate_getcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L434", "weight": 1.0}], "raw_calls": [{"caller_nid": "openstack_validate_autherrormessage", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L48"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L48"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L54"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L54"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L56"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L56"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L59"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L59"}, {"caller_nid": "openstack_validate_validate", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L79"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L85"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L85"}, {"caller_nid": "openstack_validate_validate", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L89"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L98"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L98"}, {"caller_nid": "openstack_validate_validate", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L103"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L107"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L107"}, {"caller_nid": "openstack_validate_validate", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L112"}, {"caller_nid": "openstack_validate_validate", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L116"}, {"caller_nid": "openstack_validate_validate", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L118"}, {"caller_nid": "openstack_validate_validate", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L119"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L122"}, {"caller_nid": "openstack_validate_validate", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L123"}, {"caller_nid": "openstack_validate_validate", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L126"}, {"caller_nid": "openstack_validate_validate", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L139"}, {"caller_nid": "openstack_validate_validate", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L157"}, {"caller_nid": "openstack_validate_validate", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L170"}, {"caller_nid": "openstack_validate_validate", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L177"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L177"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L186"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L186"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L200"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L204"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L204"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L209"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L213"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L213"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L217"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L221"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L222"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L226"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L229"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L231"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L242"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L248"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L248"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L257"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L257"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "FetchAppCredentialDetails", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L274"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L276"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L276"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L277"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L290"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L292"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L296"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L297"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L298"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L301"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L302"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L304"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L306"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L310"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L313"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L316"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L327"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L330"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L332"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L343"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L347"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L348"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L348"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "recover", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L356"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L358"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L363"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L366"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L368"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L369"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "GetMasterInstanceUUID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L373"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L375"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L379"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L384"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L386"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L386"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L386"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L388"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L388"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L389"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L389"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L390"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L392"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L408"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L413"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L414"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L416"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L416"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L417"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L419"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L422"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L423"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L425"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L428"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L429"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L431"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L436"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L447"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "GetSink", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L448"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L449"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L449"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "UseDevMode", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L449"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/23088bc34bc66697c2fa4a984524c4a80c3c3ff636cf4e95d405f45a4a08eee3.json b/graphify-out/cache/ast/23088bc34bc66697c2fa4a984524c4a80c3c3ff636cf4e95d405f45a4a08eee3.json new file mode 100644 index 000000000..abe42c267 --- /dev/null +++ b/graphify-out/cache/ast/23088bc34bc66697c2fa4a984524c4a80c3c3ff636cf4e95d405f45a4a08eee3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_contracts_openstackcreds_crd_md", "label": "openstackcreds-crd.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L1"}, {"id": "contracts_openstackcreds_crd_openstackcreds_crd_schema_delta_informative", "label": "OpenstackCreds CRD \u2014 schema delta (informative)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L1"}, {"id": "contracts_openstackcreds_crd_spec_added_field", "label": "Spec \u2014 added field", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L5"}, {"id": "contracts_openstackcreds_crd_codeblock_1", "label": "code:yaml (spec:)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L7"}, {"id": "contracts_openstackcreds_crd_status_replaced", "label": "Status \u2014 replaced", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L22"}, {"id": "contracts_openstackcreds_crd_codeblock_2", "label": "code:yaml (status:)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L24"}, {"id": "contracts_openstackcreds_crd_go_struct_delta_informative", "label": "Go struct delta (informative)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L60"}, {"id": "contracts_openstackcreds_crd_codeblock_3", "label": "code:go (// k8s/migration/api/v1alpha1/openstackcreds_types.go)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L62"}, {"id": "contracts_openstackcreds_crd_upgrade_behavior", "label": "Upgrade behavior", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L88"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_contracts_openstackcreds_crd_md", "target": "contracts_openstackcreds_crd_openstackcreds_crd_schema_delta_informative", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L1", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_openstackcreds_crd_schema_delta_informative", "target": "contracts_openstackcreds_crd_spec_added_field", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L5", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_spec_added_field", "target": "contracts_openstackcreds_crd_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L7", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_openstackcreds_crd_schema_delta_informative", "target": "contracts_openstackcreds_crd_status_replaced", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L22", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_status_replaced", "target": "contracts_openstackcreds_crd_codeblock_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L24", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_openstackcreds_crd_schema_delta_informative", "target": "contracts_openstackcreds_crd_go_struct_delta_informative", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L60", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_go_struct_delta_informative", "target": "contracts_openstackcreds_crd_codeblock_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L62", "weight": 1.0}, {"source": "contracts_openstackcreds_crd_openstackcreds_crd_schema_delta_informative", "target": "contracts_openstackcreds_crd_upgrade_behavior", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md", "source_location": "L88", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/264e394d23dd012b23f1a956cd4769033fc32b0d1c392a65a6292e6d98bc93a9.json b/graphify-out/cache/ast/264e394d23dd012b23f1a956cd4769033fc32b0d1c392a65a6292e6d98bc93a9.json new file mode 100644 index 000000000..e1ce417cb --- /dev/null +++ b/graphify-out/cache/ast/264e394d23dd012b23f1a956cd4769033fc32b0d1c392a65a6292e6d98bc93a9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "label": "clouds_yaml.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L1"}, {"id": "utils_cloudconfig", "label": "CloudConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L45"}, {"id": "utils_cloudsfile", "label": "cloudsFile", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L83"}, {"id": "utils_cloudentry", "label": "cloudEntry", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L87"}, {"id": "utils_authblock", "label": "authBlock", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L101"}, {"id": "utils_clouds_yaml_parsecloudsyaml", "label": "ParseCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L127"}, {"id": "utils_clouds_yaml_cloudnames", "label": "CloudNames()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L166"}, {"id": "utils_clouds_yaml_parsecloudsfile", "label": "parseCloudsFile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L174"}, {"id": "utils_clouds_yaml_selectcloud", "label": "selectCloud()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L185"}, {"id": "utils_clouds_yaml_buildauthoptions", "label": "buildAuthOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L203"}, {"id": "utils_clouds_yaml_collectmicroversions", "label": "collectMicroversions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L233"}, {"id": "utils_clouds_yaml_lookslikeinlinecert", "label": "looksLikeInlineCert()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L257"}, {"id": "utils_clouds_yaml_sortedkeys", "label": "sortedKeys()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L262"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_sort", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_gopkg_in_yaml_v3", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L45", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudsfile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L83", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L87", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_authblock", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L101", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L127", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_cloudnames", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L166", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L174", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_selectcloud", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L185", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_buildauthoptions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L203", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_collectmicroversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L233", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_lookslikeinlinecert", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L257", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_sortedkeys", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L262", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L128", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_selectcloud", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L133", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_lookslikeinlinecert", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L147", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_collectmicroversions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L157", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_buildauthoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L159", "weight": 1.0}, {"source": "utils_clouds_yaml_cloudnames", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L167", "weight": 1.0}, {"source": "utils_clouds_yaml_cloudnames", "target": "utils_clouds_yaml_sortedkeys", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L171", "weight": 1.0}, {"source": "utils_clouds_yaml_selectcloud", "target": "utils_clouds_yaml_sortedkeys", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L193", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L140"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L144"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L148"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Unmarshal", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L176"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L177"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L179"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L180"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L187"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L192"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L193"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L197"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L198"}, {"caller_nid": "utils_clouds_yaml_lookslikeinlinecert", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L258"}, {"caller_nid": "utils_clouds_yaml_lookslikeinlinecert", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L259"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L263"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L263"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L265"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "Strings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L267"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/32fe175517a62f43640a255dc8bdc85853e54928c026ba920ae8310b076c7696.json b/graphify-out/cache/ast/32fe175517a62f43640a255dc8bdc85853e54928c026ba920ae8310b076c7696.json new file mode 100644 index 000000000..0e7df3f6e --- /dev/null +++ b/graphify-out/cache/ast/32fe175517a62f43640a255dc8bdc85853e54928c026ba920ae8310b076c7696.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "label": "openstackops.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L1"}, {"id": "openstack_openstackoperations", "label": "OpenstackOperations", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L32"}, {"id": "openstack_openstackops_authoptionsfromenv", "label": "authOptionsFromEnv()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L64"}, {"id": "openstack_openstackops_validateopenstack", "label": "validateOpenStack()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L122"}, {"id": "openstack_openstackops_newopenstackclients", "label": "NewOpenStackClients()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L185"}], "edges": [{"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_microversion", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vm", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_volumes", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servers", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_networks", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_ports", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_subnets", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackoperations", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L32", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackops_authoptionsfromenv", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L64", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackops_validateopenstack", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L122", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackops_newopenstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L185", "weight": 1.0}, {"source": "openstack_openstackops_validateopenstack", "target": "openstack_openstackops_authoptionsfromenv", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L123", "weight": 1.0}, {"source": "openstack_openstackops_newopenstackclients", "target": "openstack_openstackops_validateopenstack", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L186", "weight": 1.0}], "raw_calls": [{"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L65"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L65"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L67"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L70"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L70"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L72"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L72"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L74"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L74"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L77"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L81"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L81"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L82"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L82"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L83"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L83"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L84"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L84"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L85"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L85"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L87"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L87"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L90"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L90"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L109"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L112"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L125"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L127"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L129"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L132"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L136"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L138"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L140"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L143"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L147"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L150"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L154"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L157"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L159"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L161"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L161"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L163"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L165"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L167"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L167"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewNetworkV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L169"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L171"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L173"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L173"}, {"caller_nid": "openstack_openstackops_newopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L188"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/3341103d39a10d05e73f9d60b3efbca4a64fa94102d30032340966da75d1e33c.json b/graphify-out/cache/ast/3341103d39a10d05e73f9d60b3efbca4a64fa94102d30032340966da75d1e33c.json new file mode 100644 index 000000000..68df8a9b3 --- /dev/null +++ b/graphify-out/cache/ast/3341103d39a10d05e73f9d60b3efbca4a64fa94102d30032340966da75d1e33c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_research_md", "label": "research.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "label": "Phase 0 Research \u2014 clouds.yaml credentials", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_research_r_1_clouds_yaml_parsing_library", "label": "R-1: clouds.yaml parsing library", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L3"}, {"id": "003_clouds_yaml_credentials_research_r_2_kubernetes_conditions_api_for_openstackcreds", "label": "R-2: Kubernetes Conditions API for OpenstackCreds", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L20"}, {"id": "003_clouds_yaml_credentials_research_r_3_controller_runtime_secret_watch", "label": "R-3: Controller-runtime Secret watch", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L36"}, {"id": "003_clouds_yaml_credentials_research_r_4_application_credentials_auth_flow", "label": "R-4: Application Credentials auth flow", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L50"}, {"id": "003_clouds_yaml_credentials_research_r_5_microversion_floor_semantics", "label": "R-5: Microversion floor semantics", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L66"}, {"id": "003_clouds_yaml_credentials_research_r_6_client_side_yaml_parsing_in_the_ui", "label": "R-6: Client-side YAML parsing in the UI", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L83"}, {"id": "003_clouds_yaml_credentials_research_r_7_upgrade_and_back_compat_behavior", "label": "R-7: Upgrade and back-compat behavior", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L98"}, {"id": "003_clouds_yaml_credentials_research_r_8_validation_cadence", "label": "R-8: Validation cadence", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L111"}, {"id": "003_clouds_yaml_credentials_research_r_9_log_redaction_and_observability", "label": "R-9: Log redaction and observability", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L126"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_research_md", "target": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L1", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_1_clouds_yaml_parsing_library", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L3", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_2_kubernetes_conditions_api_for_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L20", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_3_controller_runtime_secret_watch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L36", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_4_application_credentials_auth_flow", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L50", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_5_microversion_floor_semantics", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L66", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_6_client_side_yaml_parsing_in_the_ui", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L83", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_7_upgrade_and_back_compat_behavior", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L98", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_8_validation_cadence", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L111", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_research_phase_0_research_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_research_r_9_log_redaction_and_observability", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/research.md", "source_location": "L126", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/39b1427df317b6d3c1f50d4053b95dc729c7c52d7a2cea66ea57fc7900408dc5.json b/graphify-out/cache/ast/39b1427df317b6d3c1f50d4053b95dc729c7c52d7a2cea66ea57fc7900408dc5.json new file mode 100644 index 000000000..d4bff66de --- /dev/null +++ b/graphify-out/cache/ast/39b1427df317b6d3c1f50d4053b95dc729c7c52d7a2cea66ea57fc7900408dc5.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specify_feature_json", "label": "feature.json", "file_type": "code", "source_file": "/home/flint/vjailbreak/.specify/feature.json", "source_location": "L1"}, {"id": "specify_feature_feature_directory", "label": "feature_directory", "file_type": "code", "source_file": "/home/flint/vjailbreak/.specify/feature.json", "source_location": "L2"}], "edges": [{"source": "home_flint_vjailbreak_specify_feature_json", "target": "specify_feature_feature_directory", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/.specify/feature.json", "source_location": "L2", "weight": 1.0}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/3ea888188c5ee1289566888ea638ab4d3063f2c21a46b5d7019858f3cbb55a8a.json b/graphify-out/cache/ast/3ea888188c5ee1289566888ea638ab4d3063f2c21a46b5d7019858f3cbb55a8a.json new file mode 100644 index 000000000..e68b4b545 --- /dev/null +++ b/graphify-out/cache/ast/3ea888188c5ee1289566888ea638ab4d3063f2c21a46b5d7019858f3cbb55a8a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "label": "conditions.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L1"}, {"id": "utils_conditions_setcondition", "label": "SetCondition()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L83"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "utils_conditions_setcondition", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L83", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_conditions_setcondition", "callee": "SetStatusCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L84"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/4704d28f04762f4c21959771da31a213d8cb30cea0d0e9525816f36e189161f6.json b/graphify-out/cache/ast/4704d28f04762f4c21959771da31a213d8cb30cea0d0e9525816f36e189161f6.json new file mode 100644 index 000000000..4e6029423 --- /dev/null +++ b/graphify-out/cache/ast/4704d28f04762f4c21959771da31a213d8cb30cea0d0e9525816f36e189161f6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_data_model_md", "label": "data-model.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "label": "Data Model \u2014 clouds.yaml credentials", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_data_model_openstackcreds_crd_extended", "label": "OpenstackCreds CRD (extended)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L3"}, {"id": "003_clouds_yaml_credentials_data_model_spec_added_field", "label": "Spec \u2014 added field", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L5"}, {"id": "003_clouds_yaml_credentials_data_model_spec_existing_fields_unchanged_documented_as_legacy", "label": "Spec \u2014 existing fields (unchanged, documented as legacy)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L11"}, {"id": "003_clouds_yaml_credentials_data_model_status_replaced", "label": "Status \u2014 replaced", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L21"}, {"id": "003_clouds_yaml_credentials_data_model_condition_types", "label": "Condition Types", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L30"}, {"id": "003_clouds_yaml_credentials_data_model_credential_secret_data_keys", "label": "Credential Secret data keys", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L47"}, {"id": "003_clouds_yaml_credentials_data_model_mode_a_clouds_yaml_preferred", "label": "Mode A: clouds.yaml (preferred)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L49"}, {"id": "003_clouds_yaml_credentials_data_model_mode_b_legacy_os_back_compat", "label": "Mode B: legacy OS_* (back-compat)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L55"}, {"id": "003_clouds_yaml_credentials_data_model_resolution_precedence", "label": "Resolution precedence", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L68"}, {"id": "003_clouds_yaml_credentials_data_model_clouds_yaml_consumed_subset", "label": "clouds.yaml \u2014 consumed subset", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L73"}, {"id": "003_clouds_yaml_credentials_data_model_sharing_semantics", "label": "Sharing semantics", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L90"}, {"id": "003_clouds_yaml_credentials_data_model_state_transitions", "label": "State transitions", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L95"}, {"id": "003_clouds_yaml_credentials_data_model_codeblock_1", "label": "code:text (OpenstackCreds created or referenced Secret changed)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L97"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_data_model_md", "target": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L1", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_data_model_openstackcreds_crd_extended", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L3", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_openstackcreds_crd_extended", "target": "003_clouds_yaml_credentials_data_model_spec_added_field", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L5", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_openstackcreds_crd_extended", "target": "003_clouds_yaml_credentials_data_model_spec_existing_fields_unchanged_documented_as_legacy", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L11", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_openstackcreds_crd_extended", "target": "003_clouds_yaml_credentials_data_model_status_replaced", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L21", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_data_model_condition_types", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L30", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_data_model_credential_secret_data_keys", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L47", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_credential_secret_data_keys", "target": "003_clouds_yaml_credentials_data_model_mode_a_clouds_yaml_preferred", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L49", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_credential_secret_data_keys", "target": "003_clouds_yaml_credentials_data_model_mode_b_legacy_os_back_compat", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L55", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_credential_secret_data_keys", "target": "003_clouds_yaml_credentials_data_model_resolution_precedence", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L68", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_data_model_clouds_yaml_consumed_subset", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L73", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_data_model_sharing_semantics", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L90", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_data_model_clouds_yaml_credentials", "target": "003_clouds_yaml_credentials_data_model_state_transitions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L95", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_data_model_state_transitions", "target": "003_clouds_yaml_credentials_data_model_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/data-model.md", "source_location": "L97", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/4708019252efc3aeeaa7667f07146635894b04bc04c0b1c4c89c3238a3b2ab40.json b/graphify-out/cache/ast/4708019252efc3aeeaa7667f07146635894b04bc04c0b1c4c89c3238a3b2ab40.json new file mode 100644 index 000000000..9103ab01f --- /dev/null +++ b/graphify-out/cache/ast/4708019252efc3aeeaa7667f07146635894b04bc04c0b1c4c89c3238a3b2ab40.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "label": "clouds_yaml_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L1"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "label": "TestParseCloudsYAML_SingleEntryEmptyName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L107"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "label": "TestParseCloudsYAML_MultiEntryNamed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L132"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "label": "TestParseCloudsYAML_MultiEntryEmptyNameAmbiguous()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L154"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "label": "TestParseCloudsYAML_CloudNotFound()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L165"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "label": "TestParseCloudsYAML_InvalidYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L172"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "label": "TestParseCloudsYAML_MissingAuthURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L179"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "label": "TestParseCloudsYAML_UnknownAuthType()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L189"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "label": "TestParseCloudsYAML_AppCredentialAndMicroversions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L199"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "label": "TestParseCloudsYAML_CacertInlineAccepted()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L222"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "label": "TestParseCloudsYAML_CacertPathRejected()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L232"}, {"id": "utils_clouds_yaml_test_testcloudnames_multientry", "label": "TestCloudNames_MultiEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L239"}, {"id": "utils_clouds_yaml_test_testcloudnames_singleentry", "label": "TestCloudNames_SingleEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L256"}, {"id": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "label": "TestCloudNames_InvalidYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L266"}, {"id": "utils_clouds_yaml_test_testmicroversionstoenvvars", "label": "TestMicroversionsToEnvVars()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L273"}, {"id": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "label": "TestSecretContainsCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L336"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_sort", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L107", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L132", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L154", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L165", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L172", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L179", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L189", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L199", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L222", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L232", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_multientry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L239", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_singleentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L256", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L266", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testmicroversionstoenvvars", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L273", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L336", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L108"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L110"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L113"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L116"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L119"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L122"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L125"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L128"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L133"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L135"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L138"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L141"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L144"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L147"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L150"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L155"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L156"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L157"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L159"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L160"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L160"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L161"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L166"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L167"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L168"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L173"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L174"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L175"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L180"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L181"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L182"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L184"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L184"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L185"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L190"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L191"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L192"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L194"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L194"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L195"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L200"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L202"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L205"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L212"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L212"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L217"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L223"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L225"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L227"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L228"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L233"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L234"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L235"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L240"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L242"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Strings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L244"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L246"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L246"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L251"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L257"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L259"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L261"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L262"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L267"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L268"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L269"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L322"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "MicroversionsToEnvVars", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L323"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L324"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L324"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L325"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L325"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L325"}, {"caller_nid": "utils_clouds_yaml_test_testmicroversionstoenvvars", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L329"}, {"caller_nid": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L360"}, {"caller_nid": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L361"}, {"caller_nid": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L362"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/4fcbebb926c0f3d0ed288dfe282a8d17603a1c64973f509de19af0736e823fac.json b/graphify-out/cache/ast/4fcbebb926c0f3d0ed288dfe282a8d17603a1c64973f509de19af0736e823fac.json new file mode 100644 index 000000000..bc53518fe --- /dev/null +++ b/graphify-out/cache/ast/4fcbebb926c0f3d0ed288dfe282a8d17603a1c64973f509de19af0736e823fac.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "label": "clouds_yaml.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L1"}, {"id": "utils_clouds_yaml_secretcontainscloudsyaml", "label": "SecretContainsCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L48"}, {"id": "utils_clouds_yaml_microversionstoenvvars", "label": "MicroversionsToEnvVars()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L64"}, {"id": "utils_envvarpair", "label": "EnvVarPair", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L85"}, {"id": "utils_clouds_yaml_servicemicroversionenvname", "label": "serviceMicroversionEnvName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L90"}, {"id": "utils_cloudconfig", "label": "CloudConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L96"}, {"id": "utils_cloudsfile", "label": "cloudsFile", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L134"}, {"id": "utils_cloudentry", "label": "cloudEntry", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L138"}, {"id": "utils_authblock", "label": "authBlock", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L152"}, {"id": "utils_clouds_yaml_parsecloudsyaml", "label": "ParseCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L178"}, {"id": "utils_clouds_yaml_cloudnames", "label": "CloudNames()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L217"}, {"id": "utils_clouds_yaml_parsecloudsfile", "label": "parseCloudsFile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L225"}, {"id": "utils_clouds_yaml_selectcloud", "label": "selectCloud()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L236"}, {"id": "utils_clouds_yaml_buildauthoptions", "label": "buildAuthOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L254"}, {"id": "utils_clouds_yaml_collectmicroversions", "label": "collectMicroversions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L284"}, {"id": "utils_clouds_yaml_lookslikeinlinecert", "label": "looksLikeInlineCert()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L308"}, {"id": "utils_clouds_yaml_sortedkeys", "label": "sortedKeys()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L313"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_sort", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_gopkg_in_yaml_v3", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_secretcontainscloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L48", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_microversionstoenvvars", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L64", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_envvarpair", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L85", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_servicemicroversionenvname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L90", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L96", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudsfile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L134", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L138", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_authblock", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L152", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L178", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_cloudnames", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L217", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L225", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_selectcloud", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L236", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_buildauthoptions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L254", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_collectmicroversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L284", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_lookslikeinlinecert", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L308", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_sortedkeys", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L313", "weight": 1.0}, {"source": "utils_clouds_yaml_microversionstoenvvars", "target": "utils_clouds_yaml_servicemicroversionenvname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L75", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L179", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_selectcloud", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L184", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_lookslikeinlinecert", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L198", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_collectmicroversions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L208", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_buildauthoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L210", "weight": 1.0}, {"source": "utils_clouds_yaml_cloudnames", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L218", "weight": 1.0}, {"source": "utils_clouds_yaml_cloudnames", "target": "utils_clouds_yaml_sortedkeys", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L222", "weight": 1.0}, {"source": "utils_clouds_yaml_selectcloud", "target": "utils_clouds_yaml_sortedkeys", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L244", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_clouds_yaml_secretcontainscloudsyaml", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L50"}, {"caller_nid": "utils_clouds_yaml_microversionstoenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L65"}, {"caller_nid": "utils_clouds_yaml_microversionstoenvvars", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L68"}, {"caller_nid": "utils_clouds_yaml_microversionstoenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L68"}, {"caller_nid": "utils_clouds_yaml_microversionstoenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L74"}, {"caller_nid": "utils_clouds_yaml_servicemicroversionenvname", "callee": "ToUpper", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L91"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L191"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L195"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L199"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Unmarshal", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L227"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L228"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L230"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L231"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L238"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L243"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L244"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L248"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L249"}, {"caller_nid": "utils_clouds_yaml_lookslikeinlinecert", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L309"}, {"caller_nid": "utils_clouds_yaml_lookslikeinlinecert", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L310"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L314"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L314"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L316"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "Strings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L318"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/50794aa8c132ee0925a6d93cbe9b6fcfae70c24e471481f91afde9b2de9aa45d.json b/graphify-out/cache/ast/50794aa8c132ee0925a6d93cbe9b6fcfae70c24e471481f91afde9b2de9aa45d.json new file mode 100644 index 000000000..213a0327e --- /dev/null +++ b/graphify-out/cache/ast/50794aa8c132ee0925a6d93cbe9b6fcfae70c24e471481f91afde9b2de9aa45d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "label": "microversion.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L1"}, {"id": "microversion_microversion_floor", "label": "Floor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L21"}], "edges": [{"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "microversion_microversion_floor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L21", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/522063c2f503030630564b37eec7f146c3632356aa1c953ab0ce8b43762fec7d.json b/graphify-out/cache/ast/522063c2f503030630564b37eec7f146c3632356aa1c953ab0ce8b43762fec7d.json new file mode 100644 index 000000000..2614d9ea3 --- /dev/null +++ b/graphify-out/cache/ast/522063c2f503030630564b37eec7f146c3632356aa1c953ab0ce8b43762fec7d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "label": "clouds_yaml.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L1"}, {"id": "utils_clouds_yaml_secretcontainscloudsyaml", "label": "SecretContainsCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L48"}, {"id": "utils_cloudconfig", "label": "CloudConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L55"}, {"id": "utils_cloudsfile", "label": "cloudsFile", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L93"}, {"id": "utils_cloudentry", "label": "cloudEntry", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L97"}, {"id": "utils_authblock", "label": "authBlock", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L111"}, {"id": "utils_clouds_yaml_parsecloudsyaml", "label": "ParseCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L137"}, {"id": "utils_clouds_yaml_cloudnames", "label": "CloudNames()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L176"}, {"id": "utils_clouds_yaml_parsecloudsfile", "label": "parseCloudsFile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L184"}, {"id": "utils_clouds_yaml_selectcloud", "label": "selectCloud()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L195"}, {"id": "utils_clouds_yaml_buildauthoptions", "label": "buildAuthOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L213"}, {"id": "utils_clouds_yaml_collectmicroversions", "label": "collectMicroversions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L243"}, {"id": "utils_clouds_yaml_lookslikeinlinecert", "label": "looksLikeInlineCert()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L267"}, {"id": "utils_clouds_yaml_sortedkeys", "label": "sortedKeys()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L272"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_sort", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_gopkg_in_yaml_v3", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_secretcontainscloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L48", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L55", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudsfile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L93", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L97", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_authblock", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L111", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L137", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_cloudnames", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L176", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L184", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_selectcloud", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L195", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_buildauthoptions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L213", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_collectmicroversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L243", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_lookslikeinlinecert", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L267", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_sortedkeys", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L272", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L138", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_selectcloud", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L143", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_lookslikeinlinecert", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L157", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_collectmicroversions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L167", "weight": 1.0}, {"source": "utils_clouds_yaml_parsecloudsyaml", "target": "utils_clouds_yaml_buildauthoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L169", "weight": 1.0}, {"source": "utils_clouds_yaml_cloudnames", "target": "utils_clouds_yaml_parsecloudsfile", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L177", "weight": 1.0}, {"source": "utils_clouds_yaml_cloudnames", "target": "utils_clouds_yaml_sortedkeys", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L181", "weight": 1.0}, {"source": "utils_clouds_yaml_selectcloud", "target": "utils_clouds_yaml_sortedkeys", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L203", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_clouds_yaml_secretcontainscloudsyaml", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L50"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L150"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L154"}, {"caller_nid": "utils_clouds_yaml_parsecloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L158"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Unmarshal", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L186"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L187"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L189"}, {"caller_nid": "utils_clouds_yaml_parsecloudsfile", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L190"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L197"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L202"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L203"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L207"}, {"caller_nid": "utils_clouds_yaml_selectcloud", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L208"}, {"caller_nid": "utils_clouds_yaml_lookslikeinlinecert", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L268"}, {"caller_nid": "utils_clouds_yaml_lookslikeinlinecert", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L269"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L273"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L273"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L275"}, {"caller_nid": "utils_clouds_yaml_sortedkeys", "callee": "Strings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L277"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/583149ccdf7304efb7cb47670d5703ca65e6bc94bdd018094a894eb3a7221848.json b/graphify-out/cache/ast/583149ccdf7304efb7cb47670d5703ca65e6bc94bdd018094a894eb3a7221848.json new file mode 100644 index 000000000..19bb427c0 --- /dev/null +++ b/graphify-out/cache/ast/583149ccdf7304efb7cb47670d5703ca65e6bc94bdd018094a894eb3a7221848.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "label": "app_credentials.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L1"}, {"id": "utils_appcredentialdetails", "label": "AppCredentialDetails", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L20"}, {"id": "utils_app_credentials_evaluateappcredexpiration", "label": "EvaluateAppCredExpiration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L35"}, {"id": "utils_app_credentials_fetchappcredentialdetails", "label": "FetchAppCredentialDetails()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L61"}, {"id": "utils_app_credentials_mapkeystoneerror", "label": "MapKeystoneError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L108"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_net_http", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_identity_v3_applicationcredentials", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_identity_v3_tokens", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "utils_appcredentialdetails", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L20", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "utils_app_credentials_evaluateappcredexpiration", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L35", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "utils_app_credentials_fetchappcredentialdetails", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L61", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_go", "target": "utils_app_credentials_mapkeystoneerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L108", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_app_credentials_evaluateappcredexpiration", "callee": "Before", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L39"}, {"caller_nid": "utils_app_credentials_evaluateappcredexpiration", "callee": "Sub", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L42"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L63"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L66"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "GetAuthResult", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L69"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L71"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "ExtractUser", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L78"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L80"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "NewIdentityV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L83"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L85"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L88"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L88"}, {"caller_nid": "utils_app_credentials_fetchappcredentialdetails", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L93"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "As", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L114"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L125"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L127"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L127"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L127"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L129"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L129"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L131"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L131"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L131"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L133"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L133"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L133"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L135"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L135"}, {"caller_nid": "utils_app_credentials_mapkeystoneerror", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials.go", "source_location": "L135"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/59118f5b03eb9909e70b3bc56f0f08591248818aed10e7415d9677bcfdcd68fd.json b/graphify-out/cache/ast/59118f5b03eb9909e70b3bc56f0f08591248818aed10e7415d9677bcfdcd68fd.json new file mode 100644 index 000000000..a2bd5ff36 --- /dev/null +++ b/graphify-out/cache/ast/59118f5b03eb9909e70b3bc56f0f08591248818aed10e7415d9677bcfdcd68fd.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L307"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L357"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L487"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L505"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L560"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L607"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L648"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L692"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L716"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L780"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L307", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L357", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L487", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L505", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L560", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L607", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L648", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L692", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L780", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L126", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L265", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L287", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L300", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L371", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L380", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L561", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L565", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L569", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L574", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L578", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L586", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L685", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L739", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L81"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L86"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L96"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L102"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L110"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L115"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L122"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L130"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L135"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L137"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L141"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L147"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L150"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L165"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L171"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L174"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L177"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L226"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L231"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L250"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L255"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L263"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L272"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L278"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L281"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L288"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L289"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L289"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L290"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L293"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L301"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L312"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L313"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L314"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L315"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L321"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L321"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L322"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L326"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L327"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L327"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L328"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L335"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L335"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L336"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L337"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L342"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L343"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L344"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L345"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L348"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L359"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L361"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L366"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L366"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L370"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L384"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L385"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L396"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L397"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L404"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L406"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L408"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L408"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L438"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L439"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L443"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L444"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L447"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L454"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L455"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L456"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L461"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L470"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L475"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L489"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L491"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L495"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L518"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L521"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L523"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L524"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L536"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L537"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L538"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L556"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L557"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L595"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L597"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L597"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L598"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L600"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L602"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L609"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L610"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L611"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L612"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L619"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L621"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L622"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L630"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L632"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L633"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L637"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L641"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L642"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L643"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L651"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L653"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L654"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L657"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L658"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L658"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L659"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L667"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L669"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L670"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L674"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L678"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L680"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L681"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L699"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L702"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L711"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L717"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L723"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L728"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L733"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L734"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L738"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L745"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L749"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L752"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L754"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L759"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L761"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L765"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L767"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L769"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L771"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L773"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L775"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L781"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L782"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L783"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L784"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/61c0e5303db1cb251f625ef85920bf8a0de94a97d92fa0b9be6c887603c757ec.json b/graphify-out/cache/ast/61c0e5303db1cb251f625ef85920bf8a0de94a97d92fa0b9be6c887603c757ec.json new file mode 100644 index 000000000..30fd02eea --- /dev/null +++ b/graphify-out/cache/ast/61c0e5303db1cb251f625ef85920bf8a0de94a97d92fa0b9be6c887603c757ec.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_contracts_conditions_md", "label": "conditions.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L1"}, {"id": "contracts_conditions_condition_types_and_reasons_openstackcreds", "label": "Condition Types and Reasons \u2014 OpenstackCreds", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L1"}, {"id": "contracts_conditions_credentialsparsed", "label": "CredentialsParsed", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L3"}, {"id": "contracts_conditions_credentialsvalidated", "label": "CredentialsValidated", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L14"}, {"id": "contracts_conditions_rolessufficient", "label": "RolesSufficient", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L23"}, {"id": "contracts_conditions_expiring", "label": "Expiring", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L31"}, {"id": "contracts_conditions_expired", "label": "Expired", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L40"}, {"id": "contracts_conditions_aggregate_readiness", "label": "Aggregate readiness", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L48"}, {"id": "contracts_conditions_message_conventions", "label": "Message conventions", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L58"}, {"id": "contracts_conditions_standard_reason_code_stability", "label": "Standard Reason code stability", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L65"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_contracts_conditions_md", "target": "contracts_conditions_condition_types_and_reasons_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L1", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_credentialsparsed", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L3", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_credentialsvalidated", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L14", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_rolessufficient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L23", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_expiring", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L31", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_expired", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L40", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_aggregate_readiness", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L48", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_message_conventions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L58", "weight": 1.0}, {"source": "contracts_conditions_condition_types_and_reasons_openstackcreds", "target": "contracts_conditions_standard_reason_code_stability", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/contracts/conditions.md", "source_location": "L65", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/6304c26b42c5ea5a46e534f367f87410fe74eea8b96190116179c863e7a9882f.json b/graphify-out/cache/ast/6304c26b42c5ea5a46e534f367f87410fe74eea8b96190116179c863e7a9882f.json new file mode 100644 index 000000000..9e9adf7ea --- /dev/null +++ b/graphify-out/cache/ast/6304c26b42c5ea5a46e534f367f87410fe74eea8b96190116179c863e7a9882f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_pkg_common_microversion_microversion_test_go", "label": "microversion_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L1"}, {"id": "microversion_microversion_test_testfloor", "label": "TestFloor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L5"}, {"id": "microversion_microversion_test_testfloor_invalidinputs", "label": "TestFloor_InvalidInputs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L90"}], "edges": [{"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L3", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_test_go", "target": "microversion_microversion_test_testfloor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L5", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_test_go", "target": "microversion_microversion_test_testfloor_invalidinputs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L90", "weight": 1.0}], "raw_calls": [{"caller_nid": "microversion_microversion_test_testfloor", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L81"}, {"caller_nid": "microversion_microversion_test_testfloor", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L82"}, {"caller_nid": "microversion_microversion_test_testfloor", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L84"}, {"caller_nid": "microversion_microversion_test_testfloor_invalidinputs", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L112"}, {"caller_nid": "microversion_microversion_test_testfloor_invalidinputs", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L113"}, {"caller_nid": "microversion_microversion_test_testfloor_invalidinputs", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion_test.go", "source_location": "L115"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/63f61a257460ae9201c3aacab09e1c8b4a37df8dd710a5e7e6eaf67367bea22e.json b/graphify-out/cache/ast/63f61a257460ae9201c3aacab09e1c8b4a37df8dd710a5e7e6eaf67367bea22e.json new file mode 100644 index 000000000..2fff72671 --- /dev/null +++ b/graphify-out/cache/ast/63f61a257460ae9201c3aacab09e1c8b4a37df8dd710a5e7e6eaf67367bea22e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "label": "clouds_yaml_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L1"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "label": "TestParseCloudsYAML_SingleEntryEmptyName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L107"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "label": "TestParseCloudsYAML_MultiEntryNamed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L132"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "label": "TestParseCloudsYAML_MultiEntryEmptyNameAmbiguous()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L154"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "label": "TestParseCloudsYAML_CloudNotFound()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L165"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "label": "TestParseCloudsYAML_InvalidYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L172"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "label": "TestParseCloudsYAML_MissingAuthURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L179"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "label": "TestParseCloudsYAML_UnknownAuthType()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L189"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "label": "TestParseCloudsYAML_AppCredentialAndMicroversions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L199"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "label": "TestParseCloudsYAML_CacertInlineAccepted()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L222"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "label": "TestParseCloudsYAML_CacertPathRejected()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L232"}, {"id": "utils_clouds_yaml_test_testcloudnames_multientry", "label": "TestCloudNames_MultiEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L239"}, {"id": "utils_clouds_yaml_test_testcloudnames_singleentry", "label": "TestCloudNames_SingleEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L256"}, {"id": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "label": "TestCloudNames_InvalidYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L266"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_sort", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L107", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L132", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L154", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L165", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L172", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L179", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L189", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L199", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L222", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L232", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_multientry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L239", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_singleentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L256", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L266", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L108"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L110"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L113"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L116"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L119"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L122"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L125"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L128"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L133"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L135"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L138"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L141"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L144"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L147"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L150"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L155"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L156"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L157"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L159"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L160"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L160"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L161"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L166"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L167"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L168"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L173"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L174"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L175"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L180"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L181"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L182"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L184"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L184"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L185"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L190"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L191"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L192"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L194"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L194"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L195"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L200"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L202"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L205"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L212"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L212"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L217"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L223"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L225"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L227"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L228"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L233"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L234"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L235"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L240"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L242"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Strings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L244"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L246"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L246"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L251"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L257"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L259"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L261"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L262"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L267"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L268"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L269"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/67b601b0637e5366036df64a823d213f8b199db43dc9770f456e3d19ced7f263.json b/graphify-out/cache/ast/67b601b0637e5366036df64a823d213f8b199db43dc9770f456e3d19ced7f263.json new file mode 100644 index 000000000..4a1ee2724 --- /dev/null +++ b/graphify-out/cache/ast/67b601b0637e5366036df64a823d213f8b199db43dc9770f456e3d19ced7f263.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "label": "app_credentials_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L1"}, {"id": "utils_app_credentials_test_testevaluateappcredexpiration", "label": "TestEvaluateAppCredExpiration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L13"}, {"id": "utils_app_credentials_test_testmapkeystoneerror", "label": "TestMapKeystoneError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L79"}, {"id": "utils_app_credentials_test_timeptr", "label": "timePtr()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L112"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "go_pkg_net_http", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "utils_app_credentials_test_testevaluateappcredexpiration", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L13", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "utils_app_credentials_test_testmapkeystoneerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L79", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_app_credentials_test_go", "target": "utils_app_credentials_test_timeptr", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L112", "weight": 1.0}, {"source": "utils_app_credentials_test_testevaluateappcredexpiration", "target": "utils_app_credentials_test_timeptr", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L29", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Date", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L14"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L29"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L39"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L45"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L51"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L56"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L61"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L65"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L69"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "EvaluateAppCredExpiration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L70"}, {"caller_nid": "utils_app_credentials_test_testevaluateappcredexpiration", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L72"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L89"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L90"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L91"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L92"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L93"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L94"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L95"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L96"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L97"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L98"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L99"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L100"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L101"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L104"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "MapKeystoneError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L105"}, {"caller_nid": "utils_app_credentials_test_testmapkeystoneerror", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/app_credentials_test.go", "source_location": "L106"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/6a51a5c3c3736fc14206134ac04711d38f523f94bf2227b8952dd706deecd958.json b/graphify-out/cache/ast/6a51a5c3c3736fc14206134ac04711d38f523f94bf2227b8952dd706deecd958.json new file mode 100644 index 000000000..c88d436f0 --- /dev/null +++ b/graphify-out/cache/ast/6a51a5c3c3736fc14206134ac04711d38f523f94bf2227b8952dd706deecd958.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_tasks_md", "label": "tasks.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "label": "Tasks: clouds.yaml credentials for OpenstackCreds", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L6"}, {"id": "003_clouds_yaml_credentials_tasks_format_id_p_story_description", "label": "Format: `[ID] [P?] [Story] Description`", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L19"}, {"id": "003_clouds_yaml_credentials_tasks_path_conventions", "label": "Path Conventions", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L25"}, {"id": "003_clouds_yaml_credentials_tasks_phase_1_setup_shared_infrastructure", "label": "Phase 1: Setup (Shared Infrastructure)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L35"}, {"id": "003_clouds_yaml_credentials_tasks_phase_2_foundational_blocking_prerequisites", "label": "Phase 2: Foundational (Blocking Prerequisites)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L46"}, {"id": "003_clouds_yaml_credentials_tasks_phase_3_user_story_1_use_clouds_yaml_as_the_credential_source_priority_p1_mvp", "label": "Phase 3: User Story 1 \u2014 Use clouds.yaml as the credential source (Priority: P1) \ud83c\udfaf MVP", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L61"}, {"id": "003_clouds_yaml_credentials_tasks_tests_for_user_story_1_write_first_must_fail_before_implementation", "label": "Tests for User Story 1 (write first; must FAIL before implementation)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L69"}, {"id": "003_clouds_yaml_credentials_tasks_implementation_for_user_story_1", "label": "Implementation for User Story 1", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L85"}, {"id": "003_clouds_yaml_credentials_tasks_phase_4_user_story_2_authenticate_via_openstack_application_credentials_priority_p2", "label": "Phase 4: User Story 2 \u2014 Authenticate via OpenStack Application Credentials (Priority: P2)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L106"}, {"id": "003_clouds_yaml_credentials_tasks_tests_for_user_story_2_write_first_must_fail_before_implementation", "label": "Tests for User Story 2 (write first; must FAIL before implementation)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L114"}, {"id": "003_clouds_yaml_credentials_tasks_implementation_for_user_story_2", "label": "Implementation for User Story 2", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L121"}, {"id": "003_clouds_yaml_credentials_tasks_phase_5_user_story_3_enter_clouds_yaml_through_the_web_ui_priority_p3", "label": "Phase 5: User Story 3 \u2014 Enter clouds.yaml through the web UI (Priority: P3)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L133"}, {"id": "003_clouds_yaml_credentials_tasks_tests_for_user_story_3_write_first_must_fail_before_implementation", "label": "Tests for User Story 3 (write first; must FAIL before implementation)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L141"}, {"id": "003_clouds_yaml_credentials_tasks_implementation_for_user_story_3", "label": "Implementation for User Story 3", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L149"}, {"id": "003_clouds_yaml_credentials_tasks_phase_6_polish_cross_cutting_concerns", "label": "Phase 6: Polish & Cross-Cutting Concerns", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L162"}, {"id": "003_clouds_yaml_credentials_tasks_dependencies_execution_order", "label": "Dependencies & Execution Order", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L174"}, {"id": "003_clouds_yaml_credentials_tasks_phase_dependencies", "label": "Phase Dependencies", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L176"}, {"id": "003_clouds_yaml_credentials_tasks_user_story_dependencies", "label": "User Story Dependencies", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L185"}, {"id": "003_clouds_yaml_credentials_tasks_within_each_user_story_tdd_discipline", "label": "Within Each User Story (TDD discipline)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L192"}, {"id": "003_clouds_yaml_credentials_tasks_parallel_opportunities", "label": "Parallel Opportunities", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L198"}, {"id": "003_clouds_yaml_credentials_tasks_parallel_example_user_story_1", "label": "Parallel Example: User Story 1", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L209"}, {"id": "003_clouds_yaml_credentials_tasks_codeblock_1", "label": "code:bash (# Phase 3, after Phase 2 checkpoint, on PR #1's branch:)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L211"}, {"id": "003_clouds_yaml_credentials_tasks_implementation_strategy", "label": "Implementation Strategy", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L228"}, {"id": "003_clouds_yaml_credentials_tasks_mvp_first_pr_1_user_story_1_only", "label": "MVP First (PR #1 \u2014 User Story 1 only)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L230"}, {"id": "003_clouds_yaml_credentials_tasks_incremental_delivery", "label": "Incremental Delivery", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L238"}, {"id": "003_clouds_yaml_credentials_tasks_parallel_team_strategy", "label": "Parallel Team Strategy", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L246"}, {"id": "003_clouds_yaml_credentials_tasks_notes", "label": "Notes", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L258"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_tasks_md", "target": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L6", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_format_id_p_story_description", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L19", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_path_conventions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L25", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_phase_1_setup_shared_infrastructure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L35", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_phase_2_foundational_blocking_prerequisites", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L46", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_phase_3_user_story_1_use_clouds_yaml_as_the_credential_source_priority_p1_mvp", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L61", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_phase_3_user_story_1_use_clouds_yaml_as_the_credential_source_priority_p1_mvp", "target": "003_clouds_yaml_credentials_tasks_tests_for_user_story_1_write_first_must_fail_before_implementation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L69", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_phase_3_user_story_1_use_clouds_yaml_as_the_credential_source_priority_p1_mvp", "target": "003_clouds_yaml_credentials_tasks_implementation_for_user_story_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L85", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_phase_4_user_story_2_authenticate_via_openstack_application_credentials_priority_p2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L106", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_phase_4_user_story_2_authenticate_via_openstack_application_credentials_priority_p2", "target": "003_clouds_yaml_credentials_tasks_tests_for_user_story_2_write_first_must_fail_before_implementation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L114", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_phase_4_user_story_2_authenticate_via_openstack_application_credentials_priority_p2", "target": "003_clouds_yaml_credentials_tasks_implementation_for_user_story_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L121", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_phase_5_user_story_3_enter_clouds_yaml_through_the_web_ui_priority_p3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L133", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_phase_5_user_story_3_enter_clouds_yaml_through_the_web_ui_priority_p3", "target": "003_clouds_yaml_credentials_tasks_tests_for_user_story_3_write_first_must_fail_before_implementation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L141", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_phase_5_user_story_3_enter_clouds_yaml_through_the_web_ui_priority_p3", "target": "003_clouds_yaml_credentials_tasks_implementation_for_user_story_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L149", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_phase_6_polish_cross_cutting_concerns", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L162", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_dependencies_execution_order", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L174", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_dependencies_execution_order", "target": "003_clouds_yaml_credentials_tasks_phase_dependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L176", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_dependencies_execution_order", "target": "003_clouds_yaml_credentials_tasks_user_story_dependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L185", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_dependencies_execution_order", "target": "003_clouds_yaml_credentials_tasks_within_each_user_story_tdd_discipline", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L192", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_dependencies_execution_order", "target": "003_clouds_yaml_credentials_tasks_parallel_opportunities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L198", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_parallel_example_user_story_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L209", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_parallel_example_user_story_1", "target": "003_clouds_yaml_credentials_tasks_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L211", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_implementation_strategy", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L228", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_implementation_strategy", "target": "003_clouds_yaml_credentials_tasks_mvp_first_pr_1_user_story_1_only", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L230", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_implementation_strategy", "target": "003_clouds_yaml_credentials_tasks_incremental_delivery", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L238", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_implementation_strategy", "target": "003_clouds_yaml_credentials_tasks_parallel_team_strategy", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L246", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_tasks_tasks_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_tasks_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/tasks.md", "source_location": "L258", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/6a6732a8fd3e6b1bb2812fb05e41f5f64e71e99536b00e368fba6ebe4bb87913.json b/graphify-out/cache/ast/6a6732a8fd3e6b1bb2812fb05e41f5f64e71e99536b00e368fba6ebe4bb87913.json new file mode 100644 index 000000000..ae7ef4ae4 --- /dev/null +++ b/graphify-out/cache/ast/6a6732a8fd3e6b1bb2812fb05e41f5f64e71e99536b00e368fba6ebe4bb87913.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "label": "validate.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L1"}, {"id": "openstack_validationresult", "label": "ValidationResult", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L30"}, {"id": "openstack_validate_autherrormessage", "label": "authErrorMessage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L36"}, {"id": "openstack_validate_validate", "label": "Validate()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L59"}, {"id": "openstack_validate_validatefromcloudsyaml", "label": "validateFromCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L193"}, {"id": "openstack_validate_getcredentialsfromsecret", "label": "getCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L265"}, {"id": "openstack_validate_verifycredentialsmatchcurrentenvironment", "label": "verifyCredentialsMatchCurrentEnvironment()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L332"}, {"id": "openstack_postvalidationresources", "label": "PostValidationResources", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L377"}, {"id": "openstack_validate_fetchresourcespostvalidation", "label": "FetchResourcesPostValidation()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L384"}, {"id": "openstack_validate_ensurelogger", "label": "ensureLogger()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L424"}], "edges": [{"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servers", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log_zap", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validationresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L30", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_autherrormessage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L36", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_validate", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L59", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_validatefromcloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L193", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_getcredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L265", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_verifycredentialsmatchcurrentenvironment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L332", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_postvalidationresources", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L377", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_fetchresourcespostvalidation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L384", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_validation_openstack_validate_go", "target": "openstack_validate_ensurelogger", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L424", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_ensurelogger", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L61", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_validatefromcloudsyaml", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L84", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_getcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L88", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_autherrormessage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L134", "weight": 1.0}, {"source": "openstack_validate_validate", "target": "openstack_validate_verifycredentialsmatchcurrentenvironment", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L169", "weight": 1.0}, {"source": "openstack_validate_validatefromcloudsyaml", "target": "openstack_validate_autherrormessage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L228", "weight": 1.0}, {"source": "openstack_validate_validatefromcloudsyaml", "target": "openstack_validate_verifycredentialsmatchcurrentenvironment", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L241", "weight": 1.0}, {"source": "openstack_validate_fetchresourcespostvalidation", "target": "openstack_validate_ensurelogger", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L389", "weight": 1.0}, {"source": "openstack_validate_fetchresourcespostvalidation", "target": "openstack_validate_getcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L412", "weight": 1.0}], "raw_calls": [{"caller_nid": "openstack_validate_autherrormessage", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L42"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L42"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L48"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L48"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L50"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L50"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L53"}, {"caller_nid": "openstack_validate_autherrormessage", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L53"}, {"caller_nid": "openstack_validate_validate", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L73"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L79"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L79"}, {"caller_nid": "openstack_validate_validate", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L83"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L92"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L92"}, {"caller_nid": "openstack_validate_validate", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L97"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L101"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L101"}, {"caller_nid": "openstack_validate_validate", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L106"}, {"caller_nid": "openstack_validate_validate", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L110"}, {"caller_nid": "openstack_validate_validate", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L112"}, {"caller_nid": "openstack_validate_validate", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L113"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L116"}, {"caller_nid": "openstack_validate_validate", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L117"}, {"caller_nid": "openstack_validate_validate", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L120"}, {"caller_nid": "openstack_validate_validate", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L133"}, {"caller_nid": "openstack_validate_validate", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L151"}, {"caller_nid": "openstack_validate_validate", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L164"}, {"caller_nid": "openstack_validate_validate", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L171"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L171"}, {"caller_nid": "openstack_validate_validate", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L180"}, {"caller_nid": "openstack_validate_validate", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L180"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L194"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L198"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L198"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L203"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L207"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L207"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L211"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L215"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L216"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L220"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L223"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L225"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L236"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L242"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L242"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L251"}, {"caller_nid": "openstack_validate_validatefromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L251"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L268"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L270"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L274"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L275"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L276"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L279"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L280"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L282"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L284"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L288"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L291"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L294"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L305"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L308"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L310"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L321"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L325"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L326"}, {"caller_nid": "openstack_validate_getcredentialsfromsecret", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L326"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "recover", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L334"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L336"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L341"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L344"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L346"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L347"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "GetMasterInstanceUUID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L351"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L353"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L357"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L362"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L364"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L364"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L364"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L366"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L366"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L367"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L367"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L368"}, {"caller_nid": "openstack_validate_verifycredentialsmatchcurrentenvironment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L370"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L386"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L391"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L392"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L394"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L394"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L395"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L397"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L400"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L401"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L403"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L406"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L407"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L409"}, {"caller_nid": "openstack_validate_fetchresourcespostvalidation", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L414"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L425"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "GetSink", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L426"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L427"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L427"}, {"caller_nid": "openstack_validate_ensurelogger", "callee": "UseDevMode", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/validation/openstack/validate.go", "source_location": "L427"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/6e491f1ff48a6e7c2a70de9c6be372ad0ff4abb6745cc54ad51e85806e3ac8b9.json b/graphify-out/cache/ast/6e491f1ff48a6e7c2a70de9c6be372ad0ff4abb6745cc54ad51e85806e3ac8b9.json new file mode 100644 index 000000000..acdab1833 --- /dev/null +++ b/graphify-out/cache/ast/6e491f1ff48a6e7c2a70de9c6be372ad0ff4abb6745cc54ad51e85806e3ac8b9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "label": "microversion.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L1"}, {"id": "microversion_microversion_floor", "label": "Floor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L29"}, {"id": "microversion_microversion_compareversions", "label": "compareVersions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L39"}, {"id": "microversion_microversion_signint", "label": "signInt()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L58"}, {"id": "microversion_microversion_parseversion", "label": "parseVersion()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L71"}], "edges": [{"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "go_pkg_math", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "go_pkg_strconv", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "microversion_microversion_floor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L29", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "microversion_microversion_compareversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L39", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "microversion_microversion_signint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L58", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_common_microversion_microversion_go", "target": "microversion_microversion_parseversion", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L71", "weight": 1.0}, {"source": "microversion_microversion_floor", "target": "microversion_microversion_compareversions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L30", "weight": 1.0}, {"source": "microversion_microversion_compareversions", "target": "microversion_microversion_parseversion", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L40", "weight": 1.0}, {"source": "microversion_microversion_compareversions", "target": "microversion_microversion_signint", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L53", "weight": 1.0}], "raw_calls": [{"caller_nid": "microversion_microversion_parseversion", "callee": "SplitN", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L79"}, {"caller_nid": "microversion_microversion_parseversion", "callee": "Atoi", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L80"}, {"caller_nid": "microversion_microversion_parseversion", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L84"}, {"caller_nid": "microversion_microversion_parseversion", "callee": "Atoi", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/common/microversion/microversion.go", "source_location": "L87"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/7067ba65bd81348fa778c069b973911792a0243eb6e7e92806e8afacc2d3ae3f.json b/graphify-out/cache/ast/7067ba65bd81348fa778c069b973911792a0243eb6e7e92806e8afacc2d3ae3f.json new file mode 100644 index 000000000..e634fe755 --- /dev/null +++ b/graphify-out/cache/ast/7067ba65bd81348fa778c069b973911792a0243eb6e7e92806e8afacc2d3ae3f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "label": "conditions.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L1"}, {"id": "utils_conditions_setcondition", "label": "SetCondition()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L78"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "utils_conditions_setcondition", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L78", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/815e5b6373ace2a937287b033e1f82d306e5eb009378f15d83d1b4d0a5ef809f.json b/graphify-out/cache/ast/815e5b6373ace2a937287b033e1f82d306e5eb009378f15d83d1b4d0a5ef809f.json new file mode 100644 index 000000000..41f42dd07 --- /dev/null +++ b/graphify-out/cache/ast/815e5b6373ace2a937287b033e1f82d306e5eb009378f15d83d1b4d0a5ef809f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "label": "vjailbreak_proxy.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1"}, {"id": "server_vjailbreakproxy", "label": "vjailbreakProxy", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L41"}, {"id": "server_openstackcredsinfo", "label": "OpenstackCredsinfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L46"}, {"id": "server_vjailbreakproxy_validateopenstackip", "label": ".ValidateOpenstackIp()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L56"}, {"id": "server_openstackclients", "label": "OpenStackClients", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L125"}, {"id": "server_vjailbreak_proxy_isipinuse", "label": "isIPInUse()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L132"}, {"id": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "label": "GetOpenstackCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L153"}, {"id": "server_vjailbreak_proxy_getopenstackclients", "label": "GetOpenStackClients()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L228"}, {"id": "server_vjailbreak_proxy_validateandgetproviderclient", "label": "ValidateAndGetProviderClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L307"}, {"id": "server_vjailbreak_proxy_countvalid", "label": "countValid()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L370"}, {"id": "server_vjailbreak_proxy_createinclusterclient", "label": "CreateInClusterClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L384"}, {"id": "server_vjailbreak_proxy_isretryablestatusupdateerror", "label": "isRetryableStatusUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L410"}, {"id": "server_vjailbreakproxy_updatevmwarevalidationstatus", "label": ".updateVMwareValidationStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L417"}, {"id": "server_vjailbreakproxy_updateopenstackvalidationstatus", "label": ".updateOpenstackValidationStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L429"}, {"id": "server_vjailbreakproxy_updateopenstackflavors", "label": ".updateOpenstackFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L465"}, {"id": "server_vjailbreakproxy_revalidatecredentials", "label": ".RevalidateCredentials()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L479"}, {"id": "server_vjailbreakproxy_injectenvvariables", "label": ".InjectEnvVariables()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L666"}, {"id": "server_checknetworksubnetcompatibilityrequest", "label": "checkNetworkSubnetCompatibilityRequest", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L876"}, {"id": "server_subnetcompatibilityresult", "label": "subnetCompatibilityResult", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L884"}, {"id": "server_checknetworksubnetcompatibilityresponse", "label": "checkNetworkSubnetCompatibilityResponse", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L891"}, {"id": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "label": "HandleCheckNetworkSubnetCompatibility()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L899"}, {"id": "server_vjailbreak_proxy_makenotfoundresults", "label": "makeNotFoundResults()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1071"}, {"id": "server_vjailbreak_proxy_writejsonresponse", "label": "writeJSONResponse()", "file_type": "code", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1083"}], "edges": [{"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_net", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_net_http", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_networks", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_ports", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_subnets", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_vmware", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_vpwned_api_proto_v1_service", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_github_com_sirupsen_logrus", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_api_apps_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_apimachinery_pkg_util_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_client_go_kubernetes_scheme", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_client_go_rest", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log_zap", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreakproxy", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L41", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_openstackcredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L46", "weight": 1.0}, {"source": "server_vjailbreakproxy", "target": "server_vjailbreakproxy_validateopenstackip", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L56", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_openstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L125", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_isipinuse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L132", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L153", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_getopenstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L228", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_validateandgetproviderclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L307", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_countvalid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L370", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_createinclusterclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L384", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_isretryablestatusupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L410", "weight": 1.0}, {"source": "server_vjailbreakproxy", "target": "server_vjailbreakproxy_updatevmwarevalidationstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L417", "weight": 1.0}, {"source": "server_vjailbreakproxy", "target": "server_vjailbreakproxy_updateopenstackvalidationstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L429", "weight": 1.0}, {"source": "server_vjailbreakproxy", "target": "server_vjailbreakproxy_updateopenstackflavors", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L465", "weight": 1.0}, {"source": "server_vjailbreakproxy", "target": "server_vjailbreakproxy_revalidatecredentials", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L479", "weight": 1.0}, {"source": "server_vjailbreakproxy", "target": "server_vjailbreakproxy_injectenvvariables", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L666", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_checknetworksubnetcompatibilityrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L876", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_subnetcompatibilityresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L884", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_checknetworksubnetcompatibilityresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L891", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L899", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_makenotfoundresults", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1071", "weight": 1.0}, {"source": "home_flint_vjailbreak_pkg_vpwned_server_vjailbreak_proxy_go", "target": "server_vjailbreak_proxy_writejsonresponse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1083", "weight": 1.0}, {"source": "server_vjailbreakproxy_validateopenstackip", "target": "server_vjailbreak_proxy_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L83", "weight": 1.0}, {"source": "server_vjailbreakproxy_validateopenstackip", "target": "server_vjailbreak_proxy_isipinuse", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L103", "weight": 1.0}, {"source": "server_vjailbreak_proxy_getopenstackclients", "target": "server_vjailbreak_proxy_createinclusterclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L239", "weight": 1.0}, {"source": "server_vjailbreak_proxy_getopenstackclients", "target": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L248", "weight": 1.0}, {"source": "server_vjailbreak_proxy_getopenstackclients", "target": "server_vjailbreak_proxy_validateandgetproviderclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L265", "weight": 1.0}, {"source": "server_vjailbreakproxy_revalidatecredentials", "target": "server_vjailbreakproxy_updatevmwarevalidationstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L502", "weight": 1.0}, {"source": "server_vjailbreakproxy_revalidatecredentials", "target": "server_vjailbreakproxy_updateopenstackvalidationstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L580", "weight": 1.0}, {"source": "server_vjailbreakproxy_revalidatecredentials", "target": "server_vjailbreakproxy_updateopenstackflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L619", "weight": 1.0}, {"source": "server_vjailbreakproxy_injectenvvariables", "target": "server_vjailbreak_proxy_createinclusterclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L734", "weight": 1.0}, {"source": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "target": "server_vjailbreak_proxy_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L936", "weight": 1.0}, {"source": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "target": "server_vjailbreak_proxy_makenotfoundresults", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L959", "weight": 1.0}, {"source": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "target": "server_vjailbreak_proxy_writejsonresponse", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L963", "weight": 1.0}], "raw_calls": [{"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L58"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L58"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L59"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L59"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "GetIp", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L63"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L66"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L66"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L67"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L72"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L76"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L76"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L82"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L85"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L85"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L88"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L91"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L91"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L97"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L97"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L98"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L99"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L105"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L105"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L112"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L112"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L118"}, {"caller_nid": "server_vjailbreakproxy_validateopenstackip", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L119"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L134"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L134"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L135"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L135"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L137"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L137"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L139"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L141"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L141"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L141"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "ExtractPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L144"}, {"caller_nid": "server_vjailbreak_proxy_isipinuse", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L145"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L155"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L155"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L156"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L156"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L158"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L159"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L159"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L159"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L160"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L164"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L165"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L166"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L169"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L170"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L171"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L175"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L175"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L176"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L179"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L179"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L180"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L183"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L183"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L184"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L192"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L192"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L198"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L201"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L201"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L202"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L204"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L204"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L205"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L216"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L216"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L217"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L221"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L222"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackcredentialsfromsecret", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L222"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L230"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L230"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L233"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L233"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L234"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L237"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L237"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L241"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L241"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L241"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L244"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L244"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L246"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L246"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L250"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L250"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L250"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L253"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L253"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L264"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L264"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L267"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L267"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L267"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L271"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L271"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L272"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L274"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L274"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L276"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L276"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L277"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L279"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L279"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L279"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L280"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L283"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L283"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L284"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L286"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L286"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L286"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L287"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L291"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L291"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "NewNetworkV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L292"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L294"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L294"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L294"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L295"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L299"}, {"caller_nid": "server_vjailbreak_proxy_getopenstackclients", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L299"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L309"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L309"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L310"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L310"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L312"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L314"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L314"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L314"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L317"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L321"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L324"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L325"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L326"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L328"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L333"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L333"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L343"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L343"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L345"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L345"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L345"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L350"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L350"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L359"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L359"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L361"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L361"}, {"caller_nid": "server_vjailbreak_proxy_validateandgetproviderclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L361"}, {"caller_nid": "server_vjailbreak_proxy_countvalid", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L372"}, {"caller_nid": "server_vjailbreak_proxy_countvalid", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L372"}, {"caller_nid": "server_vjailbreak_proxy_countvalid", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L379"}, {"caller_nid": "server_vjailbreak_proxy_countvalid", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L379"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "Debug", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L386"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L386"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "InClusterConfig", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L387"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L389"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L389"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L389"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "NewScheme", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L392"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "Must", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L393"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "AddToScheme", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L393"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "Must", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L394"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "AddToScheme", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L394"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L399"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L403"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L403"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L403"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L406"}, {"caller_nid": "server_vjailbreak_proxy_createinclusterclient", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L406"}, {"caller_nid": "server_vjailbreak_proxy_isretryablestatusupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L411"}, {"caller_nid": "server_vjailbreak_proxy_isretryablestatusupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L412"}, {"caller_nid": "server_vjailbreak_proxy_isretryablestatusupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L413"}, {"caller_nid": "server_vjailbreak_proxy_isretryablestatusupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L414"}, {"caller_nid": "server_vjailbreakproxy_updatevmwarevalidationstatus", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L418"}, {"caller_nid": "server_vjailbreakproxy_updatevmwarevalidationstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L420"}, {"caller_nid": "server_vjailbreakproxy_updatevmwarevalidationstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L425"}, {"caller_nid": "server_vjailbreakproxy_updatevmwarevalidationstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L425"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L430"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L432"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L447"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L448"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L452"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L456"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L461"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackvalidationstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L461"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackflavors", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L466"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackflavors", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L468"}, {"caller_nid": "server_vjailbreakproxy_updateopenstackflavors", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L475"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L481"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L481"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetKind", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L481"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L481"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L481"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L482"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L482"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetKind", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L482"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L482"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L482"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L484"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "UseDevMode", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L484"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L485"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L486"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetKind", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L488"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L489"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L490"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L491"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L491"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L497"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L498"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L498"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L498"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L499"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L503"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L503"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L503"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L504"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L507"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L507"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L508"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L511"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L511"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L514"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L514"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L521"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L521"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "cancel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L522"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L524"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L526"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L526"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "statusCancel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L527"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L529"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L534"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L538"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L538"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L538"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "updateTerminalStatus", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L539"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L539"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L539"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L539"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L540"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L540"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L540"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L545"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L545"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "FetchResourcesPostValidation", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L546"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L549"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L549"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L549"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "updateTerminalStatus", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L550"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L550"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L550"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L551"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L551"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L551"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L554"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L554"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L554"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "updateTerminalStatus", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L555"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L555"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L556"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L556"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L556"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L562"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L562"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L564"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L565"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L565"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L565"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L566"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L570"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L575"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L576"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L576"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L576"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L577"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L581"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L581"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L581"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L582"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L585"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L585"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L586"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L589"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L589"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L595"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L595"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "cancel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L596"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L598"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L600"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L600"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "statusCancel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L601"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "IntoContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L603"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L608"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L609"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L609"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L609"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "updateTerminalStatus", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L610"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L610"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L610"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L610"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L611"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L611"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L611"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L616"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L616"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "FetchResourcesPostValidation", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L617"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L620"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L626"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L627"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L628"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L629"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L629"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L630"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L635"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L635"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L635"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "updateTerminalStatus", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L636"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L636"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L636"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L637"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L637"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L637"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "updateTerminalStatus", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L642"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L642"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L643"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L643"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L643"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L645"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L645"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L645"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L649"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L649"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L651"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L652"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L652"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L652"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L653"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L657"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L661"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L661"}, {"caller_nid": "server_vjailbreakproxy_revalidatecredentials", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L662"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L668"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L668"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L670"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpsProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L671"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetNoProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L672"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L674"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L674"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L683"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpsProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L684"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetNoProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L685"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L688"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L688"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L701"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L704"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L718"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L719"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L719"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L727"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L728"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L728"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L736"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L736"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L736"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L739"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L743"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L743"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L744"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L755"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L755"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L757"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L763"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L763"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L765"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L774"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L775"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L776"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L776"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpsProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L778"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L779"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L780"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L780"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L783"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetHttpsProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L783"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L784"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L785"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L785"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "GetNoProxy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L786"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L788"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L789"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L789"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L792"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L793"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L793"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L793"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L796"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L799"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L799"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L799"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L801"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L801"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L809"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L810"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L810"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L810"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L813"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L816"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L816"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L816"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L819"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L819"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L820"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L822"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L829"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L831"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L831"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L832"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L834"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L834"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L834"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L837"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L840"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L840"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L842"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L842"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L844"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L846"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L853"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L855"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L855"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L856"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L858"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L858"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L858"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L861"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L864"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L864"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L866"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L867"}, {"caller_nid": "server_vjailbreakproxy_injectenvvariables", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L867"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L901"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L901"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L902"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L902"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L905"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Decode", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L910"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "NewDecoder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L910"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L911"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L911"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L911"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L912"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L912"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L917"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L921"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L925"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L925"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L928"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Context", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L936"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L938"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L938"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L938"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L939"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L939"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L944"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L944"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Context", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L944"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L946"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L946"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L946"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L947"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L947"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "ExtractNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L950"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L952"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L952"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L952"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L953"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L953"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L956"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L957"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L957"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L959"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L968"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L968"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L971"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L971"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Context", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L971"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L973"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L973"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L973"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L974"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L974"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "ExtractSubnets", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L977"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L979"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L979"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithField", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L979"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L980"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L980"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L985"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L985"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L986"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L986"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "ParseCIDR", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L991"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Warn", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L993"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithError", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L993"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L993"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L996"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L997"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1000"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1000"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1000"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1003"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1003"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1007"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "ParseIP", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1011"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1013"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1022"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1023"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1026"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Contains", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1035"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1037"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1043"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1046"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1049"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1052"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1052"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1063"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "WithFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1063"}, {"caller_nid": "server_vjailbreak_proxy_handlechecknetworksubnetcompatibility", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1066"}, {"caller_nid": "server_vjailbreak_proxy_makenotfoundresults", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1072"}, {"caller_nid": "server_vjailbreak_proxy_makenotfoundresults", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1072"}, {"caller_nid": "server_vjailbreak_proxy_makenotfoundresults", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1074"}, {"caller_nid": "server_vjailbreak_proxy_writejsonresponse", "callee": "Set", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1084"}, {"caller_nid": "server_vjailbreak_proxy_writejsonresponse", "callee": "Header", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1084"}, {"caller_nid": "server_vjailbreak_proxy_writejsonresponse", "callee": "Encode", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1085"}, {"caller_nid": "server_vjailbreak_proxy_writejsonresponse", "callee": "NewEncoder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1085"}, {"caller_nid": "server_vjailbreak_proxy_writejsonresponse", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1086"}, {"caller_nid": "server_vjailbreak_proxy_writejsonresponse", "callee": "WithError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/pkg/vpwned/server/vjailbreak_proxy.go", "source_location": "L1086"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/83ddc5ef2bd0cf8e8dd09f74b7e1c91e36b9dfb4fab503a8badfcbeda9bdf819.json b/graphify-out/cache/ast/83ddc5ef2bd0cf8e8dd09f74b7e1c91e36b9dfb4fab503a8badfcbeda9bdf819.json new file mode 100644 index 000000000..a6dc3e590 --- /dev/null +++ b/graphify-out/cache/ast/83ddc5ef2bd0cf8e8dd09f74b7e1c91e36b9dfb4fab503a8badfcbeda9bdf819.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_checklists_requirements_md", "label": "requirements.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L1"}, {"id": "checklists_requirements_specification_quality_checklist_clouds_yaml_credentials_for_openstackcreds", "label": "Specification Quality Checklist: clouds.yaml credentials for OpenstackCreds", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L1"}, {"id": "checklists_requirements_content_quality", "label": "Content Quality", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L7"}, {"id": "checklists_requirements_requirement_completeness", "label": "Requirement Completeness", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L14"}, {"id": "checklists_requirements_feature_readiness", "label": "Feature Readiness", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L25"}, {"id": "checklists_requirements_notes", "label": "Notes", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L32"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_checklists_requirements_md", "target": "checklists_requirements_specification_quality_checklist_clouds_yaml_credentials_for_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L1", "weight": 1.0}, {"source": "checklists_requirements_specification_quality_checklist_clouds_yaml_credentials_for_openstackcreds", "target": "checklists_requirements_content_quality", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L7", "weight": 1.0}, {"source": "checklists_requirements_specification_quality_checklist_clouds_yaml_credentials_for_openstackcreds", "target": "checklists_requirements_requirement_completeness", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L14", "weight": 1.0}, {"source": "checklists_requirements_specification_quality_checklist_clouds_yaml_credentials_for_openstackcreds", "target": "checklists_requirements_feature_readiness", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L25", "weight": 1.0}, {"source": "checklists_requirements_specification_quality_checklist_clouds_yaml_credentials_for_openstackcreds", "target": "checklists_requirements_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/checklists/requirements.md", "source_location": "L32", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/83f60a08fbb1b3139451c6308a1af5a9668c023826d9751d48d4b80060480bc6.json b/graphify-out/cache/ast/83f60a08fbb1b3139451c6308a1af5a9668c023826d9751d48d4b80060480bc6.json new file mode 100644 index 000000000..6da7c9e7b --- /dev/null +++ b/graphify-out/cache/ast/83f60a08fbb1b3139451c6308a1af5a9668c023826d9751d48d4b80060480bc6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "label": "openstackops.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L1"}, {"id": "openstack_openstackoperations", "label": "OpenstackOperations", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L32"}, {"id": "openstack_openstackops_authoptionsfromenv", "label": "authOptionsFromEnv()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L64"}, {"id": "openstack_openstackops_validateopenstack", "label": "validateOpenStack()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L135"}, {"id": "openstack_openstackops_newopenstackclients", "label": "NewOpenStackClients()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L198"}], "edges": [{"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_microversion", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vm", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_volumes", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servers", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_networks", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_ports", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_subnets", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackoperations", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L32", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackops_authoptionsfromenv", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L64", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackops_validateopenstack", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L135", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_openstack_openstackops_go", "target": "openstack_openstackops_newopenstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L198", "weight": 1.0}, {"source": "openstack_openstackops_validateopenstack", "target": "openstack_openstackops_authoptionsfromenv", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L136", "weight": 1.0}, {"source": "openstack_openstackops_newopenstackclients", "target": "openstack_openstackops_validateopenstack", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L199", "weight": 1.0}], "raw_calls": [{"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L65"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L65"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L67"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L72"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L72"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L73"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L73"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L83"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L83"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L85"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L85"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L87"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L87"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L90"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L94"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L94"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L95"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L95"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L96"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L96"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L97"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L97"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L98"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L98"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L100"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L100"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L103"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L103"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L122"}, {"caller_nid": "openstack_openstackops_authoptionsfromenv", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L125"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L138"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L140"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L142"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L145"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L149"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L151"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L153"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L156"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L160"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L163"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L167"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L170"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L172"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L174"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L174"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L176"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L178"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L180"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L180"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "NewNetworkV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L182"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L184"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L186"}, {"caller_nid": "openstack_openstackops_validateopenstack", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L186"}, {"caller_nid": "openstack_openstackops_newopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/openstack/openstackops.go", "source_location": "L201"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/85cd41b13d600c73e62cc1df01bbda617e09c6a586ea21155541a6daab61d156.json b/graphify-out/cache/ast/85cd41b13d600c73e62cc1df01bbda617e09c6a586ea21155541a6daab61d156.json new file mode 100644 index 000000000..86dbdcbbb --- /dev/null +++ b/graphify-out/cache/ast/85cd41b13d600c73e62cc1df01bbda617e09c6a586ea21155541a6daab61d156.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "label": "openstackopsutils.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1"}, {"id": "utils_openstackclients", "label": "OpenStackClients", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L43"}, {"id": "utils_openstackmetadata", "label": "OpenStackMetadata", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L51"}, {"id": "utils_openstackclients_getissimplenetwork", "label": ".GetIsSimpleNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L60"}, {"id": "utils_openstackopsutils_getcurrentinstanceuuid", "label": "GetCurrentInstanceUUID()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L69"}, {"id": "utils_openstackopsutils_getinstanceuuidfromnode", "label": "getInstanceUUIDFromNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L124"}, {"id": "utils_openstackclients_createvolume", "label": ".CreateVolume()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L177"}, {"id": "utils_openstackclients_deletevolume", "label": ".DeleteVolume()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L227"}, {"id": "utils_openstackclients_waitforvolume", "label": ".WaitForVolume()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L236"}, {"id": "utils_openstackclients_attachvolumetovm", "label": ".AttachVolumeToVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L281"}, {"id": "utils_openstackclients_finddevice", "label": ".FindDevice()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L318"}, {"id": "utils_openstackclients_waitforvolumeattachment", "label": ".WaitForVolumeAttachment()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L338"}, {"id": "utils_openstackclients_detachvolumefromvm", "label": ".DetachVolumeFromVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L359"}, {"id": "utils_openstackclients_enableqga", "label": ".EnableQGA()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L386"}, {"id": "utils_openstackclients_setvolumeuefi", "label": ".SetVolumeUEFI()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L402"}, {"id": "utils_openstackclients_setvolumeimagemetadata", "label": ".SetVolumeImageMetadata()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L416"}, {"id": "utils_openstackclients_applybootvolumeimagemetadata", "label": ".ApplyBootVolumeImageMetadata()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L435"}, {"id": "utils_openstackclients_setvolumebootable", "label": ".SetVolumeBootable()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L447"}, {"id": "utils_openstackclients_getclosestflavour", "label": ".GetClosestFlavour()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L459"}, {"id": "utils_openstackclients_getflavor", "label": ".GetFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L487"}, {"id": "utils_openstackclients_getnetwork", "label": ".GetNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L496"}, {"id": "utils_openstackclients_getport", "label": ".GetPort()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L516"}, {"id": "utils_openstackclients_deleteport", "label": ".DeletePort()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L525"}, {"id": "utils_openstackclients_getsubnet", "label": ".GetSubnet()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L535"}, {"id": "utils_openstackclients_checkifportexists", "label": ".CheckIfPortExists()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L557"}, {"id": "utils_openstackclients_getcreateopts", "label": ".GetCreateOpts()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L630"}, {"id": "utils_openstackclients_validateandcreateport", "label": ".ValidateAndCreatePort()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L687"}, {"id": "utils_openstackclients_createportwithdhcp", "label": ".CreatePortWithDHCP()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L730"}, {"id": "utils_openstackclients_createport", "label": ".CreatePort()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L757"}, {"id": "utils_openstackclients_createportlowlevel", "label": ".createPortLowLevel()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L776"}, {"id": "utils_openstackclients_createvm", "label": ".CreateVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L789"}, {"id": "utils_openstackclients_waituntilvmactive", "label": ".WaitUntilVMActive()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L968"}, {"id": "utils_openstackclients_manageexistingvolume", "label": ".ManageExistingVolume()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L981"}, {"id": "utils_openstackclients_getsecuritygroupids", "label": ".GetSecurityGroupIDs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1041"}, {"id": "utils_openstackclients_getservergroups", "label": ".GetServerGroups()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1056"}, {"id": "utils_cindervolumeservice", "label": "CinderVolumeService", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1083"}, {"id": "utils_openstackclients_getcindervolumeservices", "label": ".GetCinderVolumeServices()", "file_type": "code", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1090"}], "edges": [{"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_io", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_math", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_net", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_net_http", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_path_filepath", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_regexp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_slices", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L14", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_sync", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_hashicorp_go_retryablehttp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_microversion", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vm", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_volumes", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servergroups", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servers", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_volumeattach", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_extensions_portsecurity", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_networks", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_ports", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_subnets", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "utils_openstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L43", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "utils_openstackmetadata", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L51", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getissimplenetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L60", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "utils_openstackopsutils_getcurrentinstanceuuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L69", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "utils_openstackopsutils_getinstanceuuidfromnode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L124", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_createvolume", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L177", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_deletevolume", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L227", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_waitforvolume", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L236", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_attachvolumetovm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L281", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_finddevice", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L318", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_waitforvolumeattachment", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L338", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_detachvolumefromvm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L359", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_enableqga", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L386", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_setvolumeuefi", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L402", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_setvolumeimagemetadata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L416", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_applybootvolumeimagemetadata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L435", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_setvolumebootable", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L447", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getclosestflavour", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L459", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getflavor", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L487", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getnetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L496", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getport", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L516", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_deleteport", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L525", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getsubnet", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L535", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_checkifportexists", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L557", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getcreateopts", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L630", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_validateandcreateport", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L687", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_createportwithdhcp", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L730", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_createport", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L757", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_createportlowlevel", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L776", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_createvm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L789", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_waituntilvmactive", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L968", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_manageexistingvolume", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L981", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getsecuritygroupids", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1041", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getservergroups", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1056", "weight": 1.0}, {"source": "home_flint_vjailbreak_v2v_helper_pkg_utils_openstackopsutils_go", "target": "utils_cindervolumeservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1083", "weight": 1.0}, {"source": "utils_openstackclients", "target": "utils_openstackclients_getcindervolumeservices", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1090", "weight": 1.0}, {"source": "utils_openstackopsutils_getcurrentinstanceuuid", "target": "utils_openstackopsutils_getinstanceuuidfromnode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L73", "weight": 1.0}, {"source": "utils_openstackclients_createvolume", "target": "utils_openstackclients_waitforvolume", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L195", "weight": 1.0}, {"source": "utils_openstackclients_createvolume", "target": "utils_openstackclients_setvolumeuefi", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L206", "weight": 1.0}, {"source": "utils_openstackclients_createvolume", "target": "utils_openstackclients_setvolumeimagemetadata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L213", "weight": 1.0}, {"source": "utils_openstackclients_createvolume", "target": "utils_openstackclients_enableqga", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L219", "weight": 1.0}, {"source": "utils_openstackclients_waitforvolume", "target": "utils_openstackopsutils_getcurrentinstanceuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L251", "weight": 1.0}, {"source": "utils_openstackclients_attachvolumetovm", "target": "utils_openstackopsutils_getcurrentinstanceuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L282", "weight": 1.0}, {"source": "utils_openstackclients_attachvolumetovm", "target": "utils_openstackclients_waitforvolumeattachment", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L310", "weight": 1.0}, {"source": "utils_openstackclients_waitforvolumeattachment", "target": "utils_openstackopsutils_getcurrentinstanceuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L339", "weight": 1.0}, {"source": "utils_openstackclients_waitforvolumeattachment", "target": "utils_openstackclients_finddevice", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L350", "weight": 1.0}, {"source": "utils_openstackclients_detachvolumefromvm", "target": "utils_openstackopsutils_getcurrentinstanceuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L360", "weight": 1.0}, {"source": "utils_openstackclients_checkifportexists", "target": "utils_openstackclients_getissimplenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L559", "weight": 1.0}, {"source": "utils_openstackclients_checkifportexists", "target": "utils_openstackclients_getsubnet", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L598", "weight": 1.0}, {"source": "utils_openstackclients_getcreateopts", "target": "utils_openstackclients_getissimplenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L644", "weight": 1.0}, {"source": "utils_openstackclients_getcreateopts", "target": "utils_openstackclients_getsubnet", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L658", "weight": 1.0}, {"source": "utils_openstackclients_validateandcreateport", "target": "utils_openstackclients_checkifportexists", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L689", "weight": 1.0}, {"source": "utils_openstackclients_validateandcreateport", "target": "utils_openstackclients_getissimplenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L697", "weight": 1.0}, {"source": "utils_openstackclients_validateandcreateport", "target": "utils_openstackclients_getcreateopts", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L709", "weight": 1.0}, {"source": "utils_openstackclients_validateandcreateport", "target": "utils_openstackclients_createportwithdhcp", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L715", "weight": 1.0}, {"source": "utils_openstackclients_validateandcreateport", "target": "utils_openstackclients_createportlowlevel", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L718", "weight": 1.0}, {"source": "utils_openstackclients_createportwithdhcp", "target": "utils_openstackclients_createportlowlevel", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L732", "weight": 1.0}, {"source": "utils_openstackclients_createportwithdhcp", "target": "utils_openstackclients_getsubnet", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L739", "weight": 1.0}, {"source": "utils_openstackclients_createport", "target": "utils_openstackclients_getcreateopts", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L764", "weight": 1.0}, {"source": "utils_openstackclients_createport", "target": "utils_openstackclients_createportlowlevel", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L773", "weight": 1.0}, {"source": "utils_openstackclients_createvm", "target": "utils_openstackclients_waitforvolume", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L939", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_openstackclients_getissimplenetwork", "callee": "IsSimpleNetwork", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L61"}, {"caller_nid": "utils_openstackclients_getissimplenetwork", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L63"}, {"caller_nid": "utils_openstackclients_getissimplenetwork", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L63"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L73"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L74"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L74"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "RLock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L80"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "RUnlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L82"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "RUnlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L85"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L87"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L88"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L94"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "NewRequest", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L97"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L99"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Do", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L102"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L104"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L106"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "ReadAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L108"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L110"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Unmarshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L114"}, {"caller_nid": "utils_openstackopsutils_getcurrentinstanceuuid", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L115"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L125"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L127"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "GetInclusterClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L130"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L132"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L136"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L140"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L145"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L149"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L150"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L153"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L153"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L163"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L163"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L170"}, {"caller_nid": "utils_openstackopsutils_getinstanceuuidfromnode", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L173"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L180"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L180"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L183"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Ceil", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L183"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "float64", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L183"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L190"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L190"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L192"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L197"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L199"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L199"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L201"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L203"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L203"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L208"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L212"}, {"caller_nid": "utils_openstackclients_createvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L215"}, {"caller_nid": "utils_openstackclients_deletevolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L228"}, {"caller_nid": "utils_openstackclients_deletevolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L228"}, {"caller_nid": "utils_openstackclients_deletevolume", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L229"}, {"caller_nid": "utils_openstackclients_deletevolume", "callee": "Delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L229"}, {"caller_nid": "utils_openstackclients_deletevolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L231"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L238"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L240"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L242"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L242"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L244"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L244"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L246"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L249"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L253"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L257"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L257"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L259"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L272"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L275"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L276"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L276"}, {"caller_nid": "utils_openstackclients_waitforvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L278"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L285"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L287"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L287"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L288"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L288"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L290"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L292"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L295"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L295"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L299"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L299"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L303"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L303"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L306"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L309"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L309"}, {"caller_nid": "utils_openstackclients_attachvolumetovm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L312"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "ReadDir", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L319"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L321"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L325"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L325"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "EvalSymlinks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L326"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L326"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L326"}, {"caller_nid": "utils_openstackclients_finddevice", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L328"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L341"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L344"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L346"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L348"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L348"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L354"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L354"}, {"caller_nid": "utils_openstackclients_waitforvolumeattachment", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L356"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L362"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L364"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L364"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L367"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L369"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L373"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L373"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L377"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L377"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L379"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L379"}, {"caller_nid": "utils_openstackclients_detachvolumefromvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L380"}, {"caller_nid": "utils_openstackclients_enableqga", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L387"}, {"caller_nid": "utils_openstackclients_enableqga", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L387"}, {"caller_nid": "utils_openstackclients_enableqga", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L395"}, {"caller_nid": "utils_openstackclients_enableqga", "callee": "SetImageMetadata", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L395"}, {"caller_nid": "utils_openstackclients_enableqga", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L397"}, {"caller_nid": "utils_openstackclients_setvolumeuefi", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L403"}, {"caller_nid": "utils_openstackclients_setvolumeuefi", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L403"}, {"caller_nid": "utils_openstackclients_setvolumeuefi", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L409"}, {"caller_nid": "utils_openstackclients_setvolumeuefi", "callee": "SetImageMetadata", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L409"}, {"caller_nid": "utils_openstackclients_setvolumeuefi", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L411"}, {"caller_nid": "utils_openstackclients_setvolumeimagemetadata", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L426"}, {"caller_nid": "utils_openstackclients_setvolumeimagemetadata", "callee": "SetImageMetadata", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L426"}, {"caller_nid": "utils_openstackclients_setvolumeimagemetadata", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L428"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L436"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L439"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L439"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L439"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L441"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "SetImageMetadata", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L441"}, {"caller_nid": "utils_openstackclients_applybootvolumeimagemetadata", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L442"}, {"caller_nid": "utils_openstackclients_setvolumebootable", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L448"}, {"caller_nid": "utils_openstackclients_setvolumebootable", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L448"}, {"caller_nid": "utils_openstackclients_setvolumebootable", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L452"}, {"caller_nid": "utils_openstackclients_setvolumebootable", "callee": "SetBootable", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L452"}, {"caller_nid": "utils_openstackclients_setvolumebootable", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L454"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L460"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L460"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L461"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "ListDetail", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L461"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L463"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "ExtractFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L466"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L468"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L471"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L471"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L475"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L475"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L475"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L477"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L478"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L481"}, {"caller_nid": "utils_openstackclients_getclosestflavour", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L481"}, {"caller_nid": "utils_openstackclients_getflavor", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L488"}, {"caller_nid": "utils_openstackclients_getflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L488"}, {"caller_nid": "utils_openstackclients_getflavor", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L489"}, {"caller_nid": "utils_openstackclients_getflavor", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L489"}, {"caller_nid": "utils_openstackclients_getflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L491"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L497"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L497"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L498"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L498"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L500"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "ExtractNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L503"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L505"}, {"caller_nid": "utils_openstackclients_getnetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L513"}, {"caller_nid": "utils_openstackclients_getport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L517"}, {"caller_nid": "utils_openstackclients_getport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L517"}, {"caller_nid": "utils_openstackclients_getport", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L518"}, {"caller_nid": "utils_openstackclients_getport", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L518"}, {"caller_nid": "utils_openstackclients_getport", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L520"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L526"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L526"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "ExtractErr", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L527"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "Delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L527"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L529"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L531"}, {"caller_nid": "utils_openstackclients_deleteport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L531"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "ParseIP", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L536"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L538"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L541"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L541"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L543"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "ParseCIDR", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L545"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L547"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Contains", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L549"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L550"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L550"}, {"caller_nid": "utils_openstackclients_getsubnet", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L554"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L561"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L563"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L563"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L568"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "ExtractPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L571"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L578"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L581"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L581"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L582"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L584"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L584"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L588"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L591"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L595"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L600"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L605"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L609"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L611"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L611"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L613"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L613"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L616"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L618"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L618"}, {"caller_nid": "utils_openstackclients_checkifportexists", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L621"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L646"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L649"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L649"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "copy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L650"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L655"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L656"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L660"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L663"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L663"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L664"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L673"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L677"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L678"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L678"}, {"caller_nid": "utils_openstackclients_getcreateopts", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L680"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L688"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L688"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L696"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L696"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L699"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L703"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L704"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L712"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L714"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L714"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L721"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L723"}, {"caller_nid": "utils_openstackclients_validateandcreateport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L723"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L735"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L741"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L743"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L750"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L751"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L753"}, {"caller_nid": "utils_openstackclients_createportwithdhcp", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L753"}, {"caller_nid": "utils_openstackclients_createport", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L759"}, {"caller_nid": "utils_openstackclients_createport", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L759"}, {"caller_nid": "utils_openstackclients_createport", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L767"}, {"caller_nid": "utils_openstackclients_createport", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L769"}, {"caller_nid": "utils_openstackclients_createport", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L769"}, {"caller_nid": "utils_openstackclients_createportlowlevel", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L778"}, {"caller_nid": "utils_openstackclients_createportlowlevel", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L784"}, {"caller_nid": "utils_openstackclients_createportlowlevel", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L784"}, {"caller_nid": "utils_openstackclients_createportlowlevel", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L786"}, {"caller_nid": "utils_openstackclients_createportlowlevel", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L786"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L800"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L802"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L802"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L807"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L818"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L825"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L825"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L827"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L827"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L833"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L833"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L835"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L836"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L837"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L838"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L842"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L846"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L866"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L876"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L877"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L877"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L887"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L901"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L916"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L916"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L918"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L918"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Floor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L924"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Getenv", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L924"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L934"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L941"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L945"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L945"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L947"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L952"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L952"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L954"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L960"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L962"}, {"caller_nid": "utils_openstackclients_createvm", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L962"}, {"caller_nid": "utils_openstackclients_waituntilvmactive", "callee": "Extract", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L969"}, {"caller_nid": "utils_openstackclients_waituntilvmactive", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L969"}, {"caller_nid": "utils_openstackclients_waituntilvmactive", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L971"}, {"caller_nid": "utils_openstackclients_waituntilvmactive", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L974"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L982"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L982"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L997"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L997"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Post", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1000"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1001"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "ServiceURL", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1002"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1012"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1016"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1022"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1026"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1028"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Unmarshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1032"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1033"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1036"}, {"caller_nid": "utils_openstackclients_manageexistingvolume", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1036"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1042"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "MustCompile", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1045"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1046"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1046"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "MatchString", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1048"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1049"}, {"caller_nid": "utils_openstackclients_getsecuritygroupids", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1051"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1057"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1057"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1059"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1059"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1061"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "ExtractServerGroups", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1064"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1066"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1071"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1074"}, {"caller_nid": "utils_openstackclients_getservergroups", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1075"}, {"caller_nid": "utils_openstackclients_getcindervolumeservices", "callee": "PrintLog", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1091"}, {"caller_nid": "utils_openstackclients_getcindervolumeservices", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1091"}, {"caller_nid": "utils_openstackclients_getcindervolumeservices", "callee": "ServiceURL", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1094"}, {"caller_nid": "utils_openstackclients_getcindervolumeservices", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1108"}, {"caller_nid": "utils_openstackclients_getcindervolumeservices", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1110"}, {"caller_nid": "utils_openstackclients_getcindervolumeservices", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/v2v-helper/pkg/utils/openstackopsutils.go", "source_location": "L1116"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/9279aca6d66f2bed83ce1f7c4a4122902f78ecfe27a75497022be38443669323.json b/graphify-out/cache/ast/9279aca6d66f2bed83ce1f7c4a4122902f78ecfe27a75497022be38443669323.json new file mode 100644 index 000000000..ed2f670fb --- /dev/null +++ b/graphify-out/cache/ast/9279aca6d66f2bed83ce1f7c4a4122902f78ecfe27a75497022be38443669323.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L52"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L120"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L145"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L159"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L260"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L304"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L354"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L374"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L448"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L484"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L502"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570"}, {"id": "controller_openstackcreds_controller_parsefailurereason", "label": "parseFailureReason()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L589"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L610"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L643"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L657"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L667"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L678"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L698"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L715"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L742"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L766"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L793"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L830"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L52", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L120", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L145", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L159", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L260", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L304", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L354", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L374", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L448", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L484", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L502", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_parsefailurereason", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L589", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L610", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L643", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L657", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L667", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L678", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L698", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L715", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L742", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L766", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L793", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L830", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L113", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L117", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L124", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L127", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L132", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L266", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L274", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L284", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L297", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L368", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377", "weight": 1.0}, {"source": "controller_openstackcreds_controller_setconditionsforinvalidresult", "target": "controller_openstackcreds_controller_parsefailurereason", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L571", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L611", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L615", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L619", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L624", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L632", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L636", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L735", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L789", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L79"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L79"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L84"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L87"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L91"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L97"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L105"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L136"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L138"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L142"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L148"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L153"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L167"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L172"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L175"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L178"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L230"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L232"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L253"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L256"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L264"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L273"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L280"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L287"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L290"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L298"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L306"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L310"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L311"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L312"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L315"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L319"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L325"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L330"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L334"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L336"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L340"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L341"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L342"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L345"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L356"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L358"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L360"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L367"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L381"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L382"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L387"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L387"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L394"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L401"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L403"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L405"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L405"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L435"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L436"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L440"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L441"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L444"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L452"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L453"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L458"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L461"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L472"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L488"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L492"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L509"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L509"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L515"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L518"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L520"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L521"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L536"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L539"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L540"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "EvaluateAppCredExpiration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L542"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L542"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L546"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L548"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L548"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L548"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L552"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L554"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L555"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L559"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L572"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L573"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "MapKeystoneError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L579"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L580"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L581"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L594"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L596"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L598"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L600"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L602"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L604"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L645"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L647"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L647"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L648"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L652"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L659"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L661"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L662"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L669"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L671"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L672"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L680"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L682"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L683"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L687"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L691"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L692"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L693"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L703"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L704"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L707"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L709"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L717"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L719"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L720"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L724"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L728"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L730"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L731"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L749"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L750"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L750"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L751"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L751"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L752"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L760"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L761"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L767"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L773"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L778"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L783"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L784"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L788"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L795"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L799"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L802"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L804"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L809"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L811"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L815"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L817"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L819"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L821"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L823"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L825"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L831"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L832"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L833"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L834"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/96f3636907bd44d805fbd4a39c8bf6de3b16b90012b45f04be221bb3ec97ec22.json b/graphify-out/cache/ast/96f3636907bd44d805fbd4a39c8bf6de3b16b90012b45f04be221bb3ec97ec22.json new file mode 100644 index 000000000..c09d38687 --- /dev/null +++ b/graphify-out/cache/ast/96f3636907bd44d805fbd4a39c8bf6de3b16b90012b45f04be221bb3ec97ec22.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_quickstart_md", "label": "quickstart.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "label": "Quickstart \u2014 clouds.yaml credentials for vjailbreak", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_quickstart_prerequisites", "label": "Prerequisites", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L5"}, {"id": "003_clouds_yaml_credentials_quickstart_step_1_create_a_vjailbreak_scoped_role_if_not_already_present", "label": "Step 1 \u2014 Create a vjailbreak-scoped role (if not already present)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L12"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_1", "label": "code:bash (openstack role create vjailbreak-migrator)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L14"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_2", "label": "code:bash (openstack role add --project \\)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L20"}, {"id": "003_clouds_yaml_credentials_quickstart_step_2_create_the_application_credential", "label": "Step 2 \u2014 Create the Application Credential", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L29"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_3", "label": "code:bash (openstack application credential create vjailbreak-svc \\)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L31"}, {"id": "003_clouds_yaml_credentials_quickstart_step_3_build_clouds_yaml", "label": "Step 3 \u2014 Build clouds.yaml", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L42"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_4", "label": "code:yaml (# clouds.yaml)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L44"}, {"id": "003_clouds_yaml_credentials_quickstart_step_4_create_the_kubernetes_secret", "label": "Step 4 \u2014 Create the Kubernetes Secret", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L59"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_5", "label": "code:bash (kubectl create secret generic openstack-creds-clouds \\)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L61"}, {"id": "003_clouds_yaml_credentials_quickstart_step_5_create_the_openstackcreds_resource", "label": "Step 5 \u2014 Create the OpenstackCreds resource", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L67"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_6", "label": "code:yaml (apiVersion: vjailbreak.k8s.pf9.io/v1alpha1)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L69"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_7", "label": "code:bash (kubectl apply -f openstackcreds.yaml)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L82"}, {"id": "003_clouds_yaml_credentials_quickstart_step_6_verify_validation", "label": "Step 6 \u2014 Verify validation", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L86"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_8", "label": "code:bash (kubectl -n migration-system get openstackcreds destination-c)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L88"}, {"id": "003_clouds_yaml_credentials_quickstart_step_7_rotate_the_application_credential", "label": "Step 7 \u2014 Rotate the Application Credential", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L102"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_9", "label": "code:bash (# Create a replacement Application Credential)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L104"}, {"id": "003_clouds_yaml_credentials_quickstart_step_8_revoke_after_migration_completion", "label": "Step 8 \u2014 Revoke after migration completion", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L121"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_10", "label": "code:bash (openstack application credential delete vjailbreak-svc)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L123"}, {"id": "003_clouds_yaml_credentials_quickstart_multi_cloud_clouds_yaml", "label": "Multi-cloud clouds.yaml", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L129"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_11", "label": "code:yaml (# clouds.yaml in one shared Secret)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L133"}, {"id": "003_clouds_yaml_credentials_quickstart_codeblock_12", "label": "code:yaml (# OpenstackCreds resources picking different entries)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L146"}, {"id": "003_clouds_yaml_credentials_quickstart_ui_path_after_pr_3", "label": "UI path (after PR #3)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L166"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_quickstart_md", "target": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L1", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_prerequisites", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L5", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_1_create_a_vjailbreak_scoped_role_if_not_already_present", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L12", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_1_create_a_vjailbreak_scoped_role_if_not_already_present", "target": "003_clouds_yaml_credentials_quickstart_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L14", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_1_create_a_vjailbreak_scoped_role_if_not_already_present", "target": "003_clouds_yaml_credentials_quickstart_codeblock_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L20", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_2_create_the_application_credential", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L29", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_2_create_the_application_credential", "target": "003_clouds_yaml_credentials_quickstart_codeblock_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L31", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_3_build_clouds_yaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L42", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_3_build_clouds_yaml", "target": "003_clouds_yaml_credentials_quickstart_codeblock_4", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L44", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_4_create_the_kubernetes_secret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L59", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_4_create_the_kubernetes_secret", "target": "003_clouds_yaml_credentials_quickstart_codeblock_5", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L61", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_5_create_the_openstackcreds_resource", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L67", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_5_create_the_openstackcreds_resource", "target": "003_clouds_yaml_credentials_quickstart_codeblock_6", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L69", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_5_create_the_openstackcreds_resource", "target": "003_clouds_yaml_credentials_quickstart_codeblock_7", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L82", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_6_verify_validation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L86", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_6_verify_validation", "target": "003_clouds_yaml_credentials_quickstart_codeblock_8", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L88", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_7_rotate_the_application_credential", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L102", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_7_rotate_the_application_credential", "target": "003_clouds_yaml_credentials_quickstart_codeblock_9", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L104", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_step_8_revoke_after_migration_completion", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L121", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_step_8_revoke_after_migration_completion", "target": "003_clouds_yaml_credentials_quickstart_codeblock_10", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L123", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_multi_cloud_clouds_yaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L129", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_multi_cloud_clouds_yaml", "target": "003_clouds_yaml_credentials_quickstart_codeblock_11", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L133", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_multi_cloud_clouds_yaml", "target": "003_clouds_yaml_credentials_quickstart_codeblock_12", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L146", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_quickstart_quickstart_clouds_yaml_credentials_for_vjailbreak", "target": "003_clouds_yaml_credentials_quickstart_ui_path_after_pr_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/quickstart.md", "source_location": "L166", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/99b618dd91866e242d11720ad340b249d1f8e6b12c86330e819af288addb2ae7.json b/graphify-out/cache/ast/99b618dd91866e242d11720ad340b249d1f8e6b12c86330e819af288addb2ae7.json new file mode 100644 index 000000000..839b2f8ef --- /dev/null +++ b/graphify-out/cache/ast/99b618dd91866e242d11720ad340b249d1f8e6b12c86330e819af288addb2ae7.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "label": "migrationplan_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1"}, {"id": "controller_migrationplanreconciler", "label": "MigrationPlanReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77"}, {"id": "controller_migrationplanreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106"}, {"id": "controller_migrationplanreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161"}, {"id": "controller_migrationplanreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177"}, {"id": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "label": ".getMigrationTemplateAndCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197"}, {"id": "controller_migrationplanreconciler_reconcilepostmigration", "label": ".reconcilePostMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228"}, {"id": "controller_migrationplanreconciler_renamevm", "label": ".renameVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302"}, {"id": "controller_migrationplanreconciler_movevmtofolder", "label": ".moveVMToFolder()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334"}, {"id": "controller_migrationplan_controller_createvcenterclientanddc", "label": "createVCenterClientAndDC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373"}, {"id": "controller_migrationplan_controller_extractvcentercredentials", "label": "extractVCenterCredentials()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403"}, {"id": "controller_migrationplan_controller_getvmwaremachineforvm", "label": "GetVMwareMachineForVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426"}, {"id": "controller_migrationplanreconciler_reconcilemigrationplanjob", "label": ".ReconcileMigrationPlanJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471"}, {"id": "controller_migrationplanreconciler_checkandhandlepausedplan", "label": ".checkAndHandlePausedPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765"}, {"id": "controller_migrationplanreconciler_processmigrationphases", "label": ".processMigrationPhases()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778"}, {"id": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "label": ".handleRDMDiskMigrationError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843"}, {"id": "controller_migrationplanreconciler_updatemigrationplanstatus", "label": ".UpdateMigrationPlanStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900"}, {"id": "controller_migrationplanreconciler_createmigration", "label": ".CreateMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932"}, {"id": "controller_migrationplan_controller_buildcloudsyamlenvvars", "label": "buildCloudsYAMLEnvVars()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054"}, {"id": "controller_migrationplanreconciler_createjob", "label": ".CreateJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1111"}, {"id": "controller_migrationplanreconciler_createfirstbootconfigmap", "label": ".CreateFirstbootConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375"}, {"id": "controller_migrationplanreconciler_createmigrationconfigmap", "label": ".CreateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410"}, {"id": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "label": ".buildNewMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439"}, {"id": "controller_migrationplan_controller_resolvevirtiodriverurl", "label": "resolveVirtioDriverURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1509"}, {"id": "controller_migrationplanreconciler_processadvancedoptions", "label": ".processAdvancedOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516"}, {"id": "controller_migrationplan_controller_computesourcevmkey", "label": "computeSourceVMKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1555"}, {"id": "controller_migrationplan_controller_vmkeydisplayname", "label": "vmKeyDisplayName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1573"}, {"id": "controller_migrationplanreconciler_buildbaseconfigmapdata", "label": ".buildBaseConfigMapData()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1587"}, {"id": "controller_migrationplanreconciler_setmigrationspecificfields", "label": ".setMigrationSpecificFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1624"}, {"id": "controller_migrationplanreconciler_determineandsettargetflavor", "label": ".determineAndSetTargetFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1630"}, {"id": "controller_migrationplanreconciler_setosfamilyandstoragefields", "label": ".setOSFamilyAndStorageFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1675"}, {"id": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "label": ".setImageMetadataFromProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1708"}, {"id": "controller_migrationplanreconciler_resolveimageprofiles", "label": ".resolveImageProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1763"}, {"id": "controller_migrationplanreconciler_updatemigrationconfigmap", "label": ".updateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1808"}, {"id": "controller_migrationplanreconciler_createresource", "label": ".createResource()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830"}, {"id": "controller_migrationplanreconciler_checkstatussuccess", "label": ".checkStatusSuccess()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843"}, {"id": "controller_migrationplanreconciler_reconcilemapping", "label": ".reconcileMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1882"}, {"id": "controller_migrationplan_controller_getdatastoresforvolumemapping", "label": "getDatastoresForVolumeMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1918"}, {"id": "controller_migrationplanreconciler_reconcilenetwork", "label": ".reconcileNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1933"}, {"id": "controller_migrationplanreconciler_reconcilestorage", "label": ".reconcileStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2006"}, {"id": "controller_migrationplanreconciler_triggermigration", "label": ".TriggerMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2052"}, {"id": "controller_migrationplanreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2195"}, {"id": "controller_migrationplanreconciler_validatevddkpresence", "label": ".validateVDDKPresence()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2231"}, {"id": "controller_migrationplan_controller_mergelabels", "label": "MergeLabels()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2327"}, {"id": "controller_migrationplanreconciler_migraterdmdisks", "label": ".migrateRDMdisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2339"}, {"id": "controller_migrationplanreconciler_validatevmos", "label": ".validateVMOS()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2482"}, {"id": "controller_migrationplanreconciler_validatemigrationplanvms", "label": ".validateMigrationPlanVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2503"}, {"id": "controller_migrationplanreconciler_updatemigrationphasewithretry", "label": ".updateMigrationPhaseWithRetry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2564"}, {"id": "controller_migrationplanreconciler_isvmsucceededinplan", "label": ".isVMSucceededInPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2618"}, {"id": "controller_migrationplanreconciler_markmigrationvalidationfailed", "label": ".markMigrationValidationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2634"}, {"id": "controller_migrationplanreconciler_markmigrationfailed", "label": ".markMigrationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2648"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os_user", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strconv", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_go_logr_logr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_verrors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_vpwned_sdk_storage_netapp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vcenter", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_batch_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_resource", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_util_wait", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_utils_ptr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L55", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L56", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L57", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L58", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L59", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L60", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_event", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L61", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L62", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L63", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L65", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L66", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L67", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplanreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_renamevm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_buildcloudsyamlenvvars", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1111", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1509", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1555", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1573", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1587", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1624", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1630", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1675", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1708", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1763", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1808", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createresource", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1882", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1918", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1933", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2006", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_triggermigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2052", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2195", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2231", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_mergelabels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2327", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2339", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevmos", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2482", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2503", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2564", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2618", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2634", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2648", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L155", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilenormal", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L169", "weight": 1.0}, {"source": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L213", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L253", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L258", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L267", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_renamevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L288", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L294", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L557", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L594", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L606", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L618", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L659", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L711", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L713", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_triggermigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L722", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L742", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L795", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L813", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L855", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L881", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplan_controller_mergelabels", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L990", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L991", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplan_controller_buildcloudsyamlenvvars", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1175", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1366", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createfirstbootconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1400", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1427", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1432", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1451", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1453", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1458", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1463", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1464", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1478", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1480", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1484", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1488", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1500", "weight": 1.0}, {"source": "controller_migrationplan_controller_computesourcevmkey", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1563", "weight": 1.0}, {"source": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1726", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1888", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1899", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1906", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1907", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2080", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2125", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2142", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2147", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2151", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2156", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2165", "weight": 1.0}, {"source": "controller_migrationplanreconciler_migraterdmdisks", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2366", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2519", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_validatevmos", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2524", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2555", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationvalidationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2642", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2656", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L107"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L110"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L111"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L115"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "ValidateMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L118"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L120"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L125"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L127"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L128"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L132"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L133"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "NewMigrationPlanScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L137"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L143"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L148"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L154"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L167"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L171"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L189"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L190"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L191"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L201"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L204"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L208"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L209"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L214"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L218"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L222"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L232"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L235"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L241"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L245"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L255"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L260"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L264"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L269"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L275"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L279"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L280"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L282"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L289"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L295"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L308"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L312"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L314"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L315"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L317"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L320"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "RenameVM", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L321"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L324"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L327"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L330"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L340"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L344"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L348"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L349"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMWithDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L350"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L351"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L353"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L356"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L359"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "MovetoFolder", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L361"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L363"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L366"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L367"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L369"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L377"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L378"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "VCenterClientBuilder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L380"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L382"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L383"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L385"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L388"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L392"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L393"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L395"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L396"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L398"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L406"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L411"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L416"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L419"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L420"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L421"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L428"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L430"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L435"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L440"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L441"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L443"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L448"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L454"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L458"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L461"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L463"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L476"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L478"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L480"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L484"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L492"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L495"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L496"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L497"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L501"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L528"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L532"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L534"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L536"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L537"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L548"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L553"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L559"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L563"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L565"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L567"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L570"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L572"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L577"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L586"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L592"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L598"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L608"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L614"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L622"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L635"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L641"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L647"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L660"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L666"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L674"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L675"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L679"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L680"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L684"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L685"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L687"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L688"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L699"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L725"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L728"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L734"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L737"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L738"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L739"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L758"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "IsMigrationPlanPaused", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L766"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L771"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L772"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L789"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L794"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L796"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L801"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L805"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L815"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L816"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L819"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L821"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L824"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L825"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L828"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L832"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L846"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L849"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L850"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L856"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L867"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L870"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L871"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L873"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L886"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L887"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L888"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L892"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L893"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L894"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L903"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L906"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L936"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L938"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L940"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L942"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L944"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L951"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L952"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L954"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L956"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L962"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L965"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "SanitizeLabelValue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L970"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L987"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L993"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L999"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1002"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1004"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1012"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1015"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1020"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1022"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1026"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1033"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1035"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1056"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1060"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1062"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1065"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1067"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1073"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1078"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1079"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1080"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1082"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1088"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1089"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1092"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1093"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1094"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1095"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1096"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1097"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1098"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1099"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "MicroversionsToEnvVars", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1103"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1104"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1123"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1125"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1127"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1129"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetJobNameForVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1131"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1133"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1155"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1160"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1177"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1178"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1180"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1185"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1187"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1191"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1192"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1193"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1193"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1222"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1229"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1261"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1269"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1302"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1303"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1304"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1307"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1308"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1309"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1320"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1329"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1348"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1357"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1367"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1367"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1368"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1368"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1378"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1380"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1382"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1384"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetFirstbootConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1386"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1388"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1389"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1390"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1390"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1402"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1402"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1403"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1418"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1420"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetMigrationConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1422"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1425"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1426"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1455"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1466"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1468"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1469"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1471"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1474"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1502"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1502"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1503"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1524"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1528"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1529"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1530"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1535"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1536"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1537"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1542"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1543"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1544"}, {"caller_nid": "controller_migrationplan_controller_computesourcevmkey", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1557"}, {"caller_nid": "controller_migrationplan_controller_vmkeydisplayname", "callee": "LastIndex", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1574"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1601"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1602"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1603"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1604"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1605"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1606"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1608"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1611"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1613"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1614"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1616"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1617"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1618"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1619"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1620"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1641"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1643"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1650"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "FilterFlavorsByAvailabilityZone", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1651"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1654"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1658"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1660"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1666"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1668"}, {"caller_nid": "controller_migrationplanreconciler_setosfamilyandstoragefields", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1682"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1716"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1721"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1723"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1728"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1730"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1735"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1736"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1738"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1742"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1749"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1753"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1755"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1757"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1771"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1776"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1777"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1778"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1781"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1785"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1793"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1812"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1814"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1815"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1817"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1819"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1821"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1823"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1825"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1831"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1833"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1835"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1837"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1849"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1851"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1857"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1859"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1860"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1865"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "IsStatusConditionTrue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1873"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1874"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1876"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1890"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1893"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1897"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1901"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1909"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1919"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1920"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1920"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1922"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1924"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1942"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1948"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1950"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1957"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1959"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1969"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1975"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1980"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1987"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1990"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1991"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1993"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1995"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1997"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1997"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1999"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2014"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2016"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2022"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2027"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2033"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2036"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2037"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2039"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2041"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2043"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2043"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2045"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2061"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2070"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetOpenStackClients", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2072"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2074"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "FindHotplugBaseFlavor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2077"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2079"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2081"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2085"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2089"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2092"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2100"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2102"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2104"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2107"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "MergeFrom", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2116"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2116"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Patch", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2118"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2119"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2121"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2127"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2133"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2134"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2138"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2141"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2143"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2149"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2153"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2177"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2177"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2183"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2184"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2196"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2196"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Owns", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2196"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2196"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2196"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2198"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Current", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2236"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "ReadDir", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2244"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2246"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2254"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2260"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2263"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2266"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2266"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2267"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2270"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2273"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2274"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2279"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2284"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2287"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2288"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2288"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2289"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2293"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2300"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2306"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2307"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2309"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2310"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2316"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2316"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2319"}, {"caller_nid": "controller_migrationplan_controller_mergelabels", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2328"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2341"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2343"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2345"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2346"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2351"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2352"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2356"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2360"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2367"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2367"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2367"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2368"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2373"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2373"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2376"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2376"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2380"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2380"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2380"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2381"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "ValidateRDMDiskFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2387"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2389"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2393"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2395"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2402"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2402"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2409"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2411"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2412"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2419"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2419"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2428"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2430"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2431"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2432"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2432"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2437"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2440"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2440"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2442"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2455"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2456"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2464"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2465"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2470"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2474"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2484"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2487"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2498"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2510"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2511"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2515"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2515"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2516"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2516"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2521"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2529"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2533"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2536"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2537"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2538"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2538"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2542"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2543"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2545"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2548"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2549"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2549"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2553"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2554"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2556"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "PollUntilContextTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2572"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2578"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2583"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2591"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2595"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2597"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2602"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2603"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2603"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2607"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2620"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2621"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2640"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2643"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2654"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/9b7e0718809839893cbee2415b512789b8a23a27955bd726cc019d14fd1c32ba.json b/graphify-out/cache/ast/9b7e0718809839893cbee2415b512789b8a23a27955bd726cc019d14fd1c32ba.json new file mode 100644 index 000000000..574d20650 --- /dev/null +++ b/graphify-out/cache/ast/9b7e0718809839893cbee2415b512789b8a23a27955bd726cc019d14fd1c32ba.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "label": "credutils.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1"}, {"id": "utils_credutils_getvmwarecredsinfo", "label": "GetVMwareCredsInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L56"}, {"id": "utils_credutils_getopenstackcredsinfo", "label": "GetOpenstackCredsInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L61"}, {"id": "utils_credutils_getarraycredsinfo", "label": "GetArrayCredsInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L66"}, {"id": "utils_credutils_getarraycredentialsfromsecret", "label": "GetArrayCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L75"}, {"id": "utils_credutils_getvmwarecredentialsfromsecret", "label": "GetVMwareCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L111"}, {"id": "utils_credutils_getopenstackcredentialsfromsecret", "label": "GetOpenstackCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L116"}, {"id": "utils_credutils_verifynetworks", "label": "VerifyNetworks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L121"}, {"id": "utils_credutils_verifyports", "label": "VerifyPorts()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L152"}, {"id": "utils_credutils_verifystorage", "label": "VerifyStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L184"}, {"id": "utils_credutils_getopenstackinfo", "label": "GetOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L215"}, {"id": "utils_credutils_getopenstackclients", "label": "GetOpenStackClients()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L315"}, {"id": "utils_credutils_validateandgetproviderclient", "label": "ValidateAndGetProviderClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L358"}, {"id": "utils_credutils_validateproviderclientfromcloudsyaml", "label": "validateProviderClientFromCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L448"}, {"id": "utils_credutils_validatevmwarecreds", "label": "ValidateVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L504"}, {"id": "utils_credutils_getvmwnetworks", "label": "GetVMwNetworks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L593"}, {"id": "utils_credutils_getvmwdatastore", "label": "GetVMwDatastore()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L642"}, {"id": "utils_credutils_getandcreateallvms", "label": "GetAndCreateAllVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L687"}, {"id": "utils_credutils_countgpus", "label": "CountGPUs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L797"}, {"id": "utils_credutils_detectgpuusage", "label": "DetectGPUUsage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L828"}, {"id": "utils_credutils_extractvirtualnics", "label": "ExtractVirtualNICs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L835"}, {"id": "utils_credutils_resolvenetworkname", "label": "resolveNetworkName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L888"}, {"id": "utils_credutils_finddvpgbykey", "label": "findDVPGByKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L947"}, {"id": "utils_credutils_guestnetworknameformac", "label": "guestNetworkNameForMAC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L974"}, {"id": "utils_credutils_extractguestnetworkinfo", "label": "ExtractGuestNetworkInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L988"}, {"id": "utils_credutils_processvmdisk", "label": "processVMDisk()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1019"}, {"id": "utils_credutils_appendunique", "label": "AppendUnique()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1055"}, {"id": "utils_credutils_createorupdatevmwaremachine", "label": "CreateOrUpdateVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1065"}, {"id": "utils_credutils_createnewvmwaremachine", "label": "createNewVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1139"}, {"id": "utils_credutils_updateexistingvmwaremachine", "label": "updateExistingVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1168"}, {"id": "utils_credutils_updatevmwaremachinestatus", "label": "updateVMwareMachineStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1228"}, {"id": "utils_credutils_shouldskipvmwaremachinereconciliation", "label": "ShouldSkipVMwareMachineReconciliation()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1255"}, {"id": "utils_credutils_migrationmatchesvmwaremachine", "label": "migrationMatchesVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1303"}, {"id": "utils_credutils_createorupdatelabel", "label": "CreateOrUpdateLabel()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1324"}, {"id": "utils_credutils_filtervmwaremachinesforcreds", "label": "FilterVMwareMachinesForCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1344"}, {"id": "utils_credutils_filtervmwarehostsforcreds", "label": "FilterVMwareHostsForCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1355"}, {"id": "utils_credutils_filtervmwareclustersforcreds", "label": "FilterVMwareClustersForCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1364"}, {"id": "utils_credutils_findvmwaremachinesnotinvcenter", "label": "FindVMwareMachinesNotInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1373"}, {"id": "utils_credutils_findvmwarehostsnotinvcenter", "label": "FindVMwareHostsNotInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1397"}, {"id": "utils_credutils_deletestalevmwaremachines", "label": "DeleteStaleVMwareMachines()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1412"}, {"id": "utils_credutils_vmexistsinvcenter", "label": "VMExistsInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1428"}, {"id": "utils_credutils_hostexistsinvcenter", "label": "HostExistsInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1438"}, {"id": "utils_credutils_deletedependantobjectsforvmwarecreds", "label": "DeleteDependantObjectsForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1450"}, {"id": "utils_credutils_deletevmwarecredssecret", "label": "DeleteVMwarecredsSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1471"}, {"id": "utils_credutils_deletevmwaremachinesforvmwarecreds", "label": "DeleteVMwareMachinesForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1487"}, {"id": "utils_credutils_deletevmwareclustersforvmwarecreds", "label": "DeleteVMwareClustersForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1503"}, {"id": "utils_credutils_deletevmwarehostsforvmwarecreds", "label": "DeleteVMwareHostsForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1519"}, {"id": "utils_credutils_containsstring", "label": "containsString()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1535"}, {"id": "utils_credutils_isphaseupdatable", "label": "isPhaseUpdatable()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1545"}, {"id": "utils_credutils_syncrdmdisks", "label": "syncRDMDisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1552"}, {"id": "utils_credutils_gethoststoragedeviceinfo", "label": "getHostStorageDeviceInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1676"}, {"id": "utils_credutils_populaterdmdiskinfofromattributes", "label": "populateRDMDiskInfoFromAttributes()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1705"}, {"id": "utils_credutils_getclusternamefromhost", "label": "getClusterNameFromHost()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1739"}, {"id": "utils_credutils_createorupdaterdmdisks", "label": "CreateOrUpdateRDMDisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1779"}, {"id": "utils_credutils_getcindervolumebackendpools", "label": "getCinderVolumeBackendPools()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1801"}, {"id": "utils_credutils_appendtovmerrorsthreadsafe", "label": "appendToVMErrorsThreadSafe()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1817"}, {"id": "utils_credutils_appendtovminfothreadsafe", "label": "appendToVMInfoThreadSafe()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1823"}, {"id": "utils_credutils_getfinderforvmwarecreds", "label": "GetFinderForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1830"}, {"id": "utils_credutils_processsinglevm", "label": "processSingleVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1865"}, {"id": "utils_credutils_findhotplugbaseflavor", "label": "FindHotplugBaseFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2145"}, {"id": "utils_credutils_logoutvmwareclient", "label": "LogoutVMwareClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2166"}, {"id": "utils_credutils_cleanupcachedvmwareclient", "label": "CleanupCachedVMwareClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2197"}, {"id": "utils_credutils_getbackendpools", "label": "GetBackendPools()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2207"}, {"id": "utils_credutils_parsepoolname", "label": "parsePoolName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2301"}, {"id": "utils_credutils_extractcinderhost", "label": "extractCinderHost()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2323"}, {"id": "utils_credutils_buildbackendtovolumetypemap", "label": "buildBackendToVolumeTypeMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2333"}, {"id": "utils_credutils_getcindervolumeservicehosts", "label": "getCinderVolumeServiceHosts()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2371"}, {"id": "utils_credutils_getarrayvendor", "label": "GetArrayVendor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2415"}, {"id": "utils_credutils_contains", "label": "Contains()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2429"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_math", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_net_url", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_slices", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sync", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_schedulerstats", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_services", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_volumetypes", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servergroups", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_networks", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_ports", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_vmware", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_find", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_property", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_session_cache", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_view", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_vim25", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_mo", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwarecredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L56", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackcredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L61", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getarraycredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L66", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getarraycredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L75", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwarecredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L111", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L116", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_verifynetworks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L121", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_verifyports", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L152", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_verifystorage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L184", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L215", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L315", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_validateandgetproviderclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L358", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_validateproviderclientfromcloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L448", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_validatevmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L504", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwnetworks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L593", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwdatastore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L642", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getandcreateallvms", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L687", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_countgpus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L797", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_detectgpuusage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L828", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_extractvirtualnics", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L835", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_resolvenetworkname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L888", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_finddvpgbykey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L947", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_guestnetworknameformac", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L974", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_extractguestnetworkinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L988", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_processvmdisk", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1019", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_appendunique", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1055", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createorupdatevmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1065", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createnewvmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1139", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_updateexistingvmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1168", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_updatevmwaremachinestatus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1228", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1255", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_migrationmatchesvmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1303", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createorupdatelabel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1324", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_filtervmwaremachinesforcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1344", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_filtervmwarehostsforcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1355", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_filtervmwareclustersforcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1364", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_findvmwaremachinesnotinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_findvmwarehostsnotinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1397", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletestalevmwaremachines", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1412", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_vmexistsinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1428", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_hostexistsinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1438", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletedependantobjectsforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1450", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwarecredssecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1471", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwaremachinesforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1487", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwareclustersforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1503", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwarehostsforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1519", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_containsstring", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1535", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_isphaseupdatable", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1545", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_syncrdmdisks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1552", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_gethoststoragedeviceinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1676", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_populaterdmdiskinfofromattributes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1705", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getclusternamefromhost", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1739", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createorupdaterdmdisks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1779", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getcindervolumebackendpools", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1801", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_appendtovmerrorsthreadsafe", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1817", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_appendtovminfothreadsafe", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1823", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getfinderforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1830", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_processsinglevm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1865", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_findhotplugbaseflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2145", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_logoutvmwareclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2166", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_cleanupcachedvmwareclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2197", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getbackendpools", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2207", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_parsepoolname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2301", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_extractcinderhost", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2323", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_buildbackendtovolumetypemap", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2333", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getcindervolumeservicehosts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2371", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getarrayvendor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2415", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_contains", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2429", "weight": 1.0}, {"source": "utils_credutils_getarraycredsinfo", "target": "utils_credutils_getarraycredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L71", "weight": 1.0}, {"source": "utils_credutils_verifynetworks", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L122", "weight": 1.0}, {"source": "utils_credutils_verifyports", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L153", "weight": 1.0}, {"source": "utils_credutils_verifystorage", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L185", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L216", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_getcindervolumebackendpools", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L246", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_buildbackendtovolumetypemap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L252", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_parsepoolname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L257", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L277", "weight": 1.0}, {"source": "utils_credutils_getopenstackclients", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L320", "weight": 1.0}, {"source": "utils_credutils_getopenstackclients", "target": "utils_credutils_validateandgetproviderclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L328", "weight": 1.0}, {"source": "utils_credutils_validateandgetproviderclient", "target": "utils_credutils_validateproviderclientfromcloudsyaml", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L371", "weight": 1.0}, {"source": "utils_credutils_validateandgetproviderclient", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L374", "weight": 1.0}, {"source": "utils_credutils_validateandgetproviderclient", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L417", "weight": 1.0}, {"source": "utils_credutils_validateproviderclientfromcloudsyaml", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L478", "weight": 1.0}, {"source": "utils_credutils_validatevmwarecreds", "target": "utils_credutils_getvmwarecredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L505", "weight": 1.0}, {"source": "utils_credutils_validatevmwarecreds", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L563", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_getfinderforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L596", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_extractvirtualnics", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L616", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_resolvenetworkname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L626", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_guestnetworknameformac", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L630", "weight": 1.0}, {"source": "utils_credutils_getvmwdatastore", "target": "utils_credutils_getfinderforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L643", "weight": 1.0}, {"source": "utils_credutils_getandcreateallvms", "target": "utils_credutils_validatevmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L708", "weight": 1.0}, {"source": "utils_credutils_getandcreateallvms", "target": "utils_credutils_processsinglevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L776", "weight": 1.0}, {"source": "utils_credutils_detectgpuusage", "target": "utils_credutils_countgpus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L829", "weight": 1.0}, {"source": "utils_credutils_resolvenetworkname", "target": "utils_credutils_finddvpgbykey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L913", "weight": 1.0}, {"source": "utils_credutils_appendunique", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1057", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1087", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1115", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_createnewvmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1123", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_updateexistingvmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1130", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_updatevmwaremachinestatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1135", "weight": 1.0}, {"source": "utils_credutils_shouldskipvmwaremachinereconciliation", "target": "utils_credutils_migrationmatchesvmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1270", "weight": 1.0}, {"source": "utils_credutils_findvmwaremachinesnotinvcenter", "target": "utils_credutils_filtervmwaremachinesforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1374", "weight": 1.0}, {"source": "utils_credutils_findvmwaremachinesnotinvcenter", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1381", "weight": 1.0}, {"source": "utils_credutils_findvmwaremachinesnotinvcenter", "target": "utils_credutils_vmexistsinvcenter", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1389", "weight": 1.0}, {"source": "utils_credutils_findvmwarehostsnotinvcenter", "target": "utils_credutils_filtervmwarehostsforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1398", "weight": 1.0}, {"source": "utils_credutils_findvmwarehostsnotinvcenter", "target": "utils_credutils_hostexistsinvcenter", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1404", "weight": 1.0}, {"source": "utils_credutils_deletestalevmwaremachines", "target": "utils_credutils_findvmwaremachinesnotinvcenter", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1413", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwaremachinesforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1453", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwarehostsforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1456", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwareclustersforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1459", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwarecredssecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1463", "weight": 1.0}, {"source": "utils_credutils_deletevmwaremachinesforvmwarecreds", "target": "utils_credutils_filtervmwaremachinesforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1488", "weight": 1.0}, {"source": "utils_credutils_deletevmwareclustersforvmwarecreds", "target": "utils_credutils_filtervmwareclustersforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1504", "weight": 1.0}, {"source": "utils_credutils_deletevmwarehostsforvmwarecreds", "target": "utils_credutils_filtervmwarehostsforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1520", "weight": 1.0}, {"source": "utils_credutils_syncrdmdisks", "target": "utils_credutils_isphaseupdatable", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1600", "weight": 1.0}, {"source": "utils_credutils_syncrdmdisks", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1606", "weight": 1.0}, {"source": "utils_credutils_syncrdmdisks", "target": "utils_credutils_appendunique", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1607", "weight": 1.0}, {"source": "utils_credutils_populaterdmdiskinfofromattributes", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1709", "weight": 1.0}, {"source": "utils_credutils_createorupdaterdmdisks", "target": "utils_credutils_syncrdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1793", "weight": 1.0}, {"source": "utils_credutils_getfinderforvmwarecreds", "target": "utils_credutils_validatevmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1831", "weight": 1.0}, {"source": "utils_credutils_getfinderforvmwarecreds", "target": "utils_credutils_logoutvmwareclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1838", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_appendtovmerrorsthreadsafe", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1881", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_gethoststoragedeviceinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1899", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_processvmdisk", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1912", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_populaterdmdiskinfofromattributes", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1920", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_appendunique", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1940", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_getclusternamefromhost", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1983", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_extractvirtualnics", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1993", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_resolvenetworkname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2003", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_guestnetworknameformac", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2007", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_extractguestnetworkinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2020", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2049", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_appendtovminfothreadsafe", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2057", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2090", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_countgpus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2117", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_createorupdatevmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2138", "weight": 1.0}, {"source": "utils_credutils_logoutvmwareclient", "target": "utils_credutils_getvmwarecredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2167", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2212", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_validateandgetproviderclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2218", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_buildbackendtovolumetypemap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2232", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_getcindervolumeservicehosts", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2253", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_parsepoolname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2264", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_extractcinderhost", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2273", "weight": 1.0}, {"source": "utils_credutils_getarrayvendor", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2419", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_credutils_getvmwarecredsinfo", "callee": "GetVMwareCredsInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L57"}, {"caller_nid": "utils_credutils_getopenstackcredsinfo", "callee": "GetOpenstackCredsInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L62"}, {"caller_nid": "utils_credutils_getarraycredsinfo", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L68"}, {"caller_nid": "utils_credutils_getarraycredsinfo", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L69"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L77"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L78"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L82"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L85"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L86"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L87"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L88"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L91"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L94"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L97"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L100"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L100"}, {"caller_nid": "utils_credutils_getvmwarecredentialsfromsecret", "callee": "GetVMwareCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L112"}, {"caller_nid": "utils_credutils_getopenstackcredentialsfromsecret", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L117"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L124"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L126"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L126"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L128"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "ExtractNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L131"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L133"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L137"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L138"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L145"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L155"}, {"caller_nid": "utils_credutils_verifyports", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L158"}, {"caller_nid": "utils_credutils_verifyports", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L158"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L160"}, {"caller_nid": "utils_credutils_verifyports", "callee": "ExtractPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L163"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L165"}, {"caller_nid": "utils_credutils_verifyports", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L169"}, {"caller_nid": "utils_credutils_verifyports", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L170"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L177"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L177"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L187"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L189"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L189"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L191"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "ExtractVolumeTypes", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L194"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L196"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L201"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L208"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L208"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L218"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L223"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L223"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L225"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ExtractVolumeTypes", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L228"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L230"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L233"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L234"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L237"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L237"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L239"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ExtractNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L242"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L244"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L248"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L251"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L254"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L254"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L270"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L271"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L279"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ListSecurityGroupInfos", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L282"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L284"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L288"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L289"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L289"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ExtractServerGroups", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L291"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L294"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L297"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L298"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L317"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L322"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L330"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L330"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L333"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L335"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L337"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L337"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L339"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L341"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L341"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "NewNetworkV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L344"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L346"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L346"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L364"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L368"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L370"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L376"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L379"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L381"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L383"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L387"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L389"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L390"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L390"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L392"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L392"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L395"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L396"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L398"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L415"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L417"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L418"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L419"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L420"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L421"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L422"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L424"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "VerifyCredentialsMatchCurrentEnvironment", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L428"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L430"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L433"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L451"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L456"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L458"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L461"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L465"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L466"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L466"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L468"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L468"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L470"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L471"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L473"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L476"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L478"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L479"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L480"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L481"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L482"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L483"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L485"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "VerifyCredentialsMatchCurrentEnvironment", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L490"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L491"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L494"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L507"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "NormalizeVCenterURL", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L515"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "UserPassword", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L520"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L527"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Load", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L533"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L536"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "UserSession", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L537"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L543"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L546"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L548"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L554"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Login", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L558"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L561"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L563"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L564"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L568"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Pow", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L571"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "float64", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L571"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L572"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L573"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L573"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L578"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L581"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L582"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L584"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Store", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L588"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L595"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L598"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "VirtualMachine", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L602"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L604"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L609"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L609"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L611"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L618"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L631"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L636"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L645"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "VirtualMachine", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L649"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L651"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L655"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L655"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L657"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L665"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L667"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L669"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L673"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L673"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L675"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L675"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L677"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L680"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L696"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L698"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L700"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L705"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L710"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L712"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "DatacenterList", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L713"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L715"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L718"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L718"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L720"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L720"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L724"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L728"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L729"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L733"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L737"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L738"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L740"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "SetDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L743"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "VirtualMachineList", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L745"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L747"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L751"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L753"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L757"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L757"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L762"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Done", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L764"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "recover", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L769"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L770"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L771"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L772"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L775"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Wait", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L780"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L783"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L785"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L786"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L786"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L786"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L789"}, {"caller_nid": "utils_credutils_detectgpuusage", "callee": "HasGPU", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L830"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "GetVirtualEthernetCard", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L850"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L856"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L869"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L870"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L891"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L896"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L896"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L897"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L905"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L905"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L916"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L919"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "CreateContainerView", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L920"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L922"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Destroy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L924"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Retrieve", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L926"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L927"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L936"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L939"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L948"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "CreateContainerView", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L949"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L952"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Destroy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L954"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Retrieve", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L957"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L960"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L967"}, {"caller_nid": "utils_credutils_guestnetworknameformac", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L979"}, {"caller_nid": "utils_credutils_extractguestnetworkinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1002"}, {"caller_nid": "utils_credutils_extractguestnetworkinfo", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1003"}, {"caller_nid": "utils_credutils_extractguestnetworkinfo", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1008"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1020"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1023"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1026"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1032"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "GetDescription", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1033"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "GetScsiLun", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1037"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1042"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1047"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1047"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "GetDescription", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1047"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1048"}, {"caller_nid": "utils_credutils_appendunique", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1058"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetVMK8sCompatibleName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1067"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1069"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1082"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1083"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1084"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1092"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1092"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1104"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1106"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetClusterK8sID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1108"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1109"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1111"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1116"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1117"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1117"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1122"}, {"caller_nid": "utils_credutils_createnewvmwaremachine", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1161"}, {"caller_nid": "utils_credutils_createnewvmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1162"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1173"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1179"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Update", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1183"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1184"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1190"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1190"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1190"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1212"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Update", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1220"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1221"}, {"caller_nid": "utils_credutils_updatevmwaremachinestatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1247"}, {"caller_nid": "utils_credutils_updatevmwaremachinestatus", "callee": "Status", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1247"}, {"caller_nid": "utils_credutils_updatevmwaremachinestatus", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1248"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1260"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1263"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1266"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1267"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1268"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1271"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1271"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1278"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1282"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1282"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1283"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1290"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1290"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1297"}, {"caller_nid": "utils_credutils_createorupdatelabel", "callee": "CreateOrUpdate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1327"}, {"caller_nid": "utils_credutils_createorupdatelabel", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1329"}, {"caller_nid": "utils_credutils_createorupdatelabel", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1338"}, {"caller_nid": "utils_credutils_filtervmwaremachinesforcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1348"}, {"caller_nid": "utils_credutils_filtervmwaremachinesforcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1348"}, {"caller_nid": "utils_credutils_filtervmwaremachinesforcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1349"}, {"caller_nid": "utils_credutils_filtervmwarehostsforcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1357"}, {"caller_nid": "utils_credutils_filtervmwarehostsforcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1357"}, {"caller_nid": "utils_credutils_filtervmwarehostsforcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1358"}, {"caller_nid": "utils_credutils_filtervmwareclustersforcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1366"}, {"caller_nid": "utils_credutils_filtervmwareclustersforcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1366"}, {"caller_nid": "utils_credutils_filtervmwareclustersforcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1367"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1376"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1383"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1383"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1390"}, {"caller_nid": "utils_credutils_findvmwarehostsnotinvcenter", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1400"}, {"caller_nid": "utils_credutils_findvmwarehostsnotinvcenter", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1405"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1415"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1418"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1419"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1420"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1420"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1452"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Name", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1452"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1454"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1457"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1460"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1464"}, {"caller_nid": "utils_credutils_deletevmwarecredssecret", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1478"}, {"caller_nid": "utils_credutils_deletevmwarecredssecret", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1479"}, {"caller_nid": "utils_credutils_deletevmwarecredssecret", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1480"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1490"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1493"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1494"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1495"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1495"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1506"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1509"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1510"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1511"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1511"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1522"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1525"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1526"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1527"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1527"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1555"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1558"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1559"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1564"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1564"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1574"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1575"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1591"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1592"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1597"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1598"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1599"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1615"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "SetOwnerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1622"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Scheme", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1622"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1623"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1627"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1629"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1631"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1631"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1637"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "SetOwnerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1654"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Scheme", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1654"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1655"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1657"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1659"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1660"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1663"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1665"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1668"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1669"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "HostSystem", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1677"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1679"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Load", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1682"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1682"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1686"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1690"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1690"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1692"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Store", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1694"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1694"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1706"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1710"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1711"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1715"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1718"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1720"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1721"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1722"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1723"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1725"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1727"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1748"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1748"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1750"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1758"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1758"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1760"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1766"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1766"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1768"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1773"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1782"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "Range", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1784"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1787"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1787"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1790"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1802"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1802"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1804"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "ExtractStoragePools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1806"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1808"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1810"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1810"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1812"}, {"caller_nid": "utils_credutils_appendtovmerrorsthreadsafe", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1818"}, {"caller_nid": "utils_credutils_appendtovmerrorsthreadsafe", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1819"}, {"caller_nid": "utils_credutils_appendtovmerrorsthreadsafe", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1820"}, {"caller_nid": "utils_credutils_appendtovminfothreadsafe", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1824"}, {"caller_nid": "utils_credutils_appendtovminfothreadsafe", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1825"}, {"caller_nid": "utils_credutils_appendtovminfothreadsafe", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1826"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1833"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "CloseIdleConnections", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1836"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1839"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1839"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1843"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1846"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1848"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "SetDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1850"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1868"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1869"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1871"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1873"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1873"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1881"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1881"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1886"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1886"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1891"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1895"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1901"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1901"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1905"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1906"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1912"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1914"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1914"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1918"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1919"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1919"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1922"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1922"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Load", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1925"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1928"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1928"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1928"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1933"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1934"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1934"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1940"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Sort", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1941"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1943"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "LoadOrStore", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1944"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1944"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1947"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Sort", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1949"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Store", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1950"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1950"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1953"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1957"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1959"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1959"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetDescription", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1966"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1967"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1972"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1977"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1977"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1979"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1979"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetClusterK8sID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1985"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1987"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1987"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1988"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1988"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1995"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1995"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1995"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2008"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2012"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2013"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2016"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2022"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2022"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2022"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetVMK8sCompatibleName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2026"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2026"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2026"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2028"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2028"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Namespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2032"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2035"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2037"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2044"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2044"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2051"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2060"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2065"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2070"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2084"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2094"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2112"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2121"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2128"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2129"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2140"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2140"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2146"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "ListDetail", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2146"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2146"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2148"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "ExtractFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2151"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2153"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2162"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2169"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2169"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "NormalizeVCenterURL", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2177"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2179"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2179"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "UserPassword", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2182"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2188"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2190"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2190"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2198"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2199"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2201"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2202"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2202"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2208"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2209"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2214"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2220"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2224"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2228"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2234"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2235"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2239"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2239"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2239"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2241"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "ExtractStoragePools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2244"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2246"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2249"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2249"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2250"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2255"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2256"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2260"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2270"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2274"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2282"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2284"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2303"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2304"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "SplitN", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2309"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2311"}, {"caller_nid": "utils_credutils_extractcinderhost", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2325"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2334"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2337"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2337"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2339"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "ExtractVolumeTypes", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2342"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2344"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2347"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2347"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2350"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2355"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2359"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2362"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2362"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2372"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2379"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2379"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2381"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "ExtractServices", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2384"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2386"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2389"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2389"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2393"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2397"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2402"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2403"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2406"}, {"caller_nid": "utils_credutils_getarrayvendor", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2417"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/a5d9706af26552abfb2bc021cfb170a8be375488880ca3456e8529757634b1e9.json b/graphify-out/cache/ast/a5d9706af26552abfb2bc021cfb170a8be375488880ca3456e8529757634b1e9.json new file mode 100644 index 000000000..6730b6c75 --- /dev/null +++ b/graphify-out/cache/ast/a5d9706af26552abfb2bc021cfb170a8be375488880ca3456e8529757634b1e9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_claude_md", "label": "CLAUDE.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L1"}, {"id": "vjailbreak_claude_vjailbreak_development_instructions", "label": "vJailbreak Development Instructions", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L1"}, {"id": "vjailbreak_claude_quick_references", "label": "Quick References", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L5"}, {"id": "vjailbreak_claude_external_documentation", "label": "External Documentation", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L14"}, {"id": "vjailbreak_claude_development_rules", "label": "Development Rules", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L31"}, {"id": "vjailbreak_claude_crd_changes", "label": "CRD Changes", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L35"}, {"id": "vjailbreak_claude_generated_files", "label": "Generated Files", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L39"}, {"id": "vjailbreak_claude_git_workflow", "label": "Git Workflow", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L43"}, {"id": "vjailbreak_claude_unit_test_requirements", "label": "Unit Test Requirements", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L47"}, {"id": "vjailbreak_claude_integration_build_testing_requirements", "label": "Integration/Build Testing Requirements", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L54"}, {"id": "vjailbreak_claude_module_structure", "label": "Module Structure", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L61"}, {"id": "vjailbreak_claude_repository_layout", "label": "Repository Layout", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L72"}, {"id": "vjailbreak_claude_quick_commands", "label": "Quick Commands", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L89"}, {"id": "vjailbreak_claude_codeblock_1", "label": "code:bash (# One-time setup)", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L91"}, {"id": "vjailbreak_claude_common_pitfalls", "label": "Common Pitfalls", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L113"}, {"id": "vjailbreak_claude_debugging", "label": "Debugging", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L122"}, {"id": "vjailbreak_claude_codeblock_2", "label": "code:bash (# Controller logs)", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L124"}, {"id": "vjailbreak_claude_repository_structure", "label": "Repository Structure", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L139"}, {"id": "vjailbreak_claude_graphify", "label": "graphify", "file_type": "document", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L159"}], "edges": [{"source": "home_flint_vjailbreak_claude_md", "target": "vjailbreak_claude_vjailbreak_development_instructions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L1", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_quick_references", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L5", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_external_documentation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L14", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_development_rules", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L31", "weight": 1.0}, {"source": "vjailbreak_claude_development_rules", "target": "vjailbreak_claude_crd_changes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L35", "weight": 1.0}, {"source": "vjailbreak_claude_development_rules", "target": "vjailbreak_claude_generated_files", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L39", "weight": 1.0}, {"source": "vjailbreak_claude_development_rules", "target": "vjailbreak_claude_git_workflow", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L43", "weight": 1.0}, {"source": "vjailbreak_claude_development_rules", "target": "vjailbreak_claude_unit_test_requirements", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L47", "weight": 1.0}, {"source": "vjailbreak_claude_development_rules", "target": "vjailbreak_claude_integration_build_testing_requirements", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L54", "weight": 1.0}, {"source": "vjailbreak_claude_development_rules", "target": "vjailbreak_claude_module_structure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L61", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_repository_layout", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L72", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_quick_commands", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L89", "weight": 1.0}, {"source": "vjailbreak_claude_quick_commands", "target": "vjailbreak_claude_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L91", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_common_pitfalls", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L113", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_debugging", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L122", "weight": 1.0}, {"source": "vjailbreak_claude_debugging", "target": "vjailbreak_claude_codeblock_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L124", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_repository_structure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L139", "weight": 1.0}, {"source": "vjailbreak_claude_vjailbreak_development_instructions", "target": "vjailbreak_claude_graphify", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/CLAUDE.md", "source_location": "L159", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/ad4d1790decdf9f1ad70deed47a277dc5de6fc6d738d82be6f4114e8e843c82d.json b/graphify-out/cache/ast/ad4d1790decdf9f1ad70deed47a277dc5de6fc6d738d82be6f4114e8e843c82d.json new file mode 100644 index 000000000..fe12b9c83 --- /dev/null +++ b/graphify-out/cache/ast/ad4d1790decdf9f1ad70deed47a277dc5de6fc6d738d82be6f4114e8e843c82d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L303"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L353"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L373"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L447"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L483"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L501"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L530"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L540"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L556"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L589"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L603"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L613"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L624"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L644"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L661"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L688"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L712"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L739"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L776"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L303", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L353", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L447", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L483", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L501", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L530", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L540", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L556", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L589", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L603", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L613", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L624", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L644", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L661", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L688", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L712", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L739", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L776", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L126", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L265", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L283", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L296", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L367", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L376", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L557", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L561", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L565", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L574", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L578", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L681", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L735", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L81"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L86"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L96"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L102"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L110"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L115"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L122"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L130"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L135"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L137"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L141"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L147"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L150"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L165"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L171"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L174"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L177"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L226"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L231"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L250"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L255"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L263"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L272"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L274"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L279"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L284"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L289"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L297"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L305"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L308"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L310"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L311"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L314"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L317"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L317"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L322"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L329"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L331"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L331"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L335"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L338"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L340"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L341"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L344"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L355"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L357"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L359"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L362"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L362"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L366"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L380"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L381"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L386"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L386"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L389"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L392"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L400"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L402"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L404"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L404"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L434"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L435"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L439"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L440"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L443"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L450"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L452"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L457"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L460"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L463"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L463"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L463"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L466"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L471"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L487"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L491"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L507"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L507"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L507"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L514"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L517"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L519"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L520"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L531"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L532"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L533"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L534"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L543"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L543"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L543"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L549"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L552"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L591"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L594"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L596"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L598"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L605"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L606"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L607"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L608"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L615"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L618"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L626"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L629"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L633"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L637"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L638"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L639"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L646"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L647"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L649"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L653"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L654"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L654"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L655"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L656"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L663"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L666"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L670"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L674"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L676"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L677"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L695"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L696"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L696"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L697"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L697"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L698"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L706"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L707"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L713"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L719"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L724"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L729"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L730"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L734"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L741"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L745"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L748"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L750"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L755"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L757"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L761"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L763"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L765"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L767"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L769"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L771"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L777"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L778"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L779"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L780"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/b08a3383f4196449e414d5c49a2f970a7a84890efbbef2b6eb175ab32d38ffb0.json b/graphify-out/cache/ast/b08a3383f4196449e414d5c49a2f970a7a84890efbbef2b6eb175ab32d38ffb0.json new file mode 100644 index 000000000..b65e8b3f2 --- /dev/null +++ b/graphify-out/cache/ast/b08a3383f4196449e414d5c49a2f970a7a84890efbbef2b6eb175ab32d38ffb0.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_plan_md", "label": "plan.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_plan_implementation_plan_clouds_yaml_credentials_for_openstackcreds", "label": "Implementation Plan: clouds.yaml credentials for OpenstackCreds", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_plan_summary", "label": "Summary", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L6"}, {"id": "003_clouds_yaml_credentials_plan_technical_context", "label": "Technical Context", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L16"}, {"id": "003_clouds_yaml_credentials_plan_constitution_check", "label": "Constitution Check", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L31"}, {"id": "003_clouds_yaml_credentials_plan_project_structure", "label": "Project Structure", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L47"}, {"id": "003_clouds_yaml_credentials_plan_documentation_this_feature", "label": "Documentation (this feature)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L49"}, {"id": "003_clouds_yaml_credentials_plan_codeblock_1", "label": "code:text (specs/003-clouds-yaml-credentials/)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L51"}, {"id": "003_clouds_yaml_credentials_plan_source_code_repository_root", "label": "Source Code (repository root)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L66"}, {"id": "003_clouds_yaml_credentials_plan_codeblock_2", "label": "code:text (k8s/migration/ # Co)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L68"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_plan_md", "target": "003_clouds_yaml_credentials_plan_implementation_plan_clouds_yaml_credentials_for_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L1", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_implementation_plan_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_plan_summary", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L6", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_implementation_plan_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_plan_technical_context", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L16", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_implementation_plan_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_plan_constitution_check", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L31", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_implementation_plan_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_plan_project_structure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L47", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_project_structure", "target": "003_clouds_yaml_credentials_plan_documentation_this_feature", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L49", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_documentation_this_feature", "target": "003_clouds_yaml_credentials_plan_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L51", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_project_structure", "target": "003_clouds_yaml_credentials_plan_source_code_repository_root", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L66", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_plan_source_code_repository_root", "target": "003_clouds_yaml_credentials_plan_codeblock_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/plan.md", "source_location": "L68", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/b176cff28e5f17cf924de2475517dc4d51de4213db5e0e2085a038d31e7fd8b3.json b/graphify-out/cache/ast/b176cff28e5f17cf924de2475517dc4d51de4213db5e0e2085a038d31e7fd8b3.json new file mode 100644 index 000000000..93afacdd6 --- /dev/null +++ b/graphify-out/cache/ast/b176cff28e5f17cf924de2475517dc4d51de4213db5e0e2085a038d31e7fd8b3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "label": "openstackcreds_types.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L1"}, {"id": "v1alpha1_hostconfig", "label": "HostConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L26"}, {"id": "v1alpha1_openstackcredsinfo", "label": "OpenStackCredsInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L39"}, {"id": "v1alpha1_securitygroupinfo", "label": "SecurityGroupInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L59"}, {"id": "v1alpha1_servergroupinfo", "label": "ServerGroupInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L66"}, {"id": "v1alpha1_pcdnetworkinfo", "label": "PCDNetworkInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L74"}, {"id": "v1alpha1_openstackinfo", "label": "OpenstackInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L80"}, {"id": "v1alpha1_openstackcredsspec", "label": "OpenstackCredsSpec", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L90"}, {"id": "v1alpha1_openstackcredsstatus", "label": "OpenstackCredsStatus", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L134"}, {"id": "v1alpha1_openstackcreds", "label": "OpenstackCreds", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L158"}, {"id": "v1alpha1_openstackcredslist", "label": "OpenstackCredsList", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L169"}, {"id": "v1alpha1_openstackcredsspec_deepcopyinto", "label": ".DeepCopyInto()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L177"}, {"id": "v1alpha1_openstackcreds_types_init", "label": "init()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L194"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_hostconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L26", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L39", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_securitygroupinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L59", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_servergroupinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L66", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_pcdnetworkinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L74", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L80", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsspec", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L90", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsstatus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L134", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L158", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredslist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L169", "weight": 1.0}, {"source": "v1alpha1_openstackcredsspec", "target": "v1alpha1_openstackcredsspec_deepcopyinto", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L177", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcreds_types_init", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L194", "weight": 1.0}], "raw_calls": [{"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L182"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L182"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "copy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L183"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L187"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L187"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "DeepCopyInto", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L189"}, {"caller_nid": "v1alpha1_openstackcreds_types_init", "callee": "Register", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L195"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/b717f121844d1836654cdc16d645ba1bf2475573abca1400911877840148ff44.json b/graphify-out/cache/ast/b717f121844d1836654cdc16d645ba1bf2475573abca1400911877840148ff44.json new file mode 100644 index 000000000..c4985d45f --- /dev/null +++ b/graphify-out/cache/ast/b717f121844d1836654cdc16d645ba1bf2475573abca1400911877840148ff44.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "label": "credutils.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1"}, {"id": "utils_credutils_getvmwarecredsinfo", "label": "GetVMwareCredsInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L56"}, {"id": "utils_credutils_getopenstackcredsinfo", "label": "GetOpenstackCredsInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L61"}, {"id": "utils_credutils_getarraycredsinfo", "label": "GetArrayCredsInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L66"}, {"id": "utils_credutils_getarraycredentialsfromsecret", "label": "GetArrayCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L75"}, {"id": "utils_credutils_getvmwarecredentialsfromsecret", "label": "GetVMwareCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L111"}, {"id": "utils_credutils_getopenstackcredentialsfromsecret", "label": "GetOpenstackCredentialsFromSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L120"}, {"id": "utils_credutils_getopenstackcredsinfofromcreds", "label": "GetOpenstackCredsInfoFromCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L136"}, {"id": "utils_credutils_verifynetworks", "label": "VerifyNetworks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L169"}, {"id": "utils_credutils_verifyports", "label": "VerifyPorts()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L200"}, {"id": "utils_credutils_verifystorage", "label": "VerifyStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L232"}, {"id": "utils_credutils_getopenstackinfo", "label": "GetOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L263"}, {"id": "utils_credutils_getopenstackclients", "label": "GetOpenStackClients()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L363"}, {"id": "utils_credutils_validateandgetproviderclient", "label": "ValidateAndGetProviderClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L406"}, {"id": "utils_credutils_validateproviderclientfromcloudsyaml", "label": "validateProviderClientFromCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L496"}, {"id": "utils_credutils_validatevmwarecreds", "label": "ValidateVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L552"}, {"id": "utils_credutils_getvmwnetworks", "label": "GetVMwNetworks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L641"}, {"id": "utils_credutils_getvmwdatastore", "label": "GetVMwDatastore()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L690"}, {"id": "utils_credutils_getandcreateallvms", "label": "GetAndCreateAllVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L735"}, {"id": "utils_credutils_countgpus", "label": "CountGPUs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L845"}, {"id": "utils_credutils_detectgpuusage", "label": "DetectGPUUsage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L876"}, {"id": "utils_credutils_extractvirtualnics", "label": "ExtractVirtualNICs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L883"}, {"id": "utils_credutils_resolvenetworkname", "label": "resolveNetworkName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L936"}, {"id": "utils_credutils_finddvpgbykey", "label": "findDVPGByKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L995"}, {"id": "utils_credutils_guestnetworknameformac", "label": "guestNetworkNameForMAC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1022"}, {"id": "utils_credutils_extractguestnetworkinfo", "label": "ExtractGuestNetworkInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1036"}, {"id": "utils_credutils_processvmdisk", "label": "processVMDisk()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1067"}, {"id": "utils_credutils_appendunique", "label": "AppendUnique()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1103"}, {"id": "utils_credutils_createorupdatevmwaremachine", "label": "CreateOrUpdateVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1113"}, {"id": "utils_credutils_createnewvmwaremachine", "label": "createNewVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1187"}, {"id": "utils_credutils_updateexistingvmwaremachine", "label": "updateExistingVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1216"}, {"id": "utils_credutils_updatevmwaremachinestatus", "label": "updateVMwareMachineStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1276"}, {"id": "utils_credutils_shouldskipvmwaremachinereconciliation", "label": "ShouldSkipVMwareMachineReconciliation()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1303"}, {"id": "utils_credutils_migrationmatchesvmwaremachine", "label": "migrationMatchesVMwareMachine()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1351"}, {"id": "utils_credutils_createorupdatelabel", "label": "CreateOrUpdateLabel()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1372"}, {"id": "utils_credutils_filtervmwaremachinesforcreds", "label": "FilterVMwareMachinesForCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1392"}, {"id": "utils_credutils_filtervmwarehostsforcreds", "label": "FilterVMwareHostsForCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1403"}, {"id": "utils_credutils_filtervmwareclustersforcreds", "label": "FilterVMwareClustersForCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1412"}, {"id": "utils_credutils_findvmwaremachinesnotinvcenter", "label": "FindVMwareMachinesNotInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1421"}, {"id": "utils_credutils_findvmwarehostsnotinvcenter", "label": "FindVMwareHostsNotInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1445"}, {"id": "utils_credutils_deletestalevmwaremachines", "label": "DeleteStaleVMwareMachines()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1460"}, {"id": "utils_credutils_vmexistsinvcenter", "label": "VMExistsInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1476"}, {"id": "utils_credutils_hostexistsinvcenter", "label": "HostExistsInVcenter()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1486"}, {"id": "utils_credutils_deletedependantobjectsforvmwarecreds", "label": "DeleteDependantObjectsForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1498"}, {"id": "utils_credutils_deletevmwarecredssecret", "label": "DeleteVMwarecredsSecret()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1519"}, {"id": "utils_credutils_deletevmwaremachinesforvmwarecreds", "label": "DeleteVMwareMachinesForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1535"}, {"id": "utils_credutils_deletevmwareclustersforvmwarecreds", "label": "DeleteVMwareClustersForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1551"}, {"id": "utils_credutils_deletevmwarehostsforvmwarecreds", "label": "DeleteVMwareHostsForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1567"}, {"id": "utils_credutils_containsstring", "label": "containsString()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1583"}, {"id": "utils_credutils_isphaseupdatable", "label": "isPhaseUpdatable()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1593"}, {"id": "utils_credutils_syncrdmdisks", "label": "syncRDMDisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1600"}, {"id": "utils_credutils_gethoststoragedeviceinfo", "label": "getHostStorageDeviceInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1724"}, {"id": "utils_credutils_populaterdmdiskinfofromattributes", "label": "populateRDMDiskInfoFromAttributes()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1753"}, {"id": "utils_credutils_getclusternamefromhost", "label": "getClusterNameFromHost()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1787"}, {"id": "utils_credutils_createorupdaterdmdisks", "label": "CreateOrUpdateRDMDisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1827"}, {"id": "utils_credutils_getcindervolumebackendpools", "label": "getCinderVolumeBackendPools()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1849"}, {"id": "utils_credutils_appendtovmerrorsthreadsafe", "label": "appendToVMErrorsThreadSafe()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1865"}, {"id": "utils_credutils_appendtovminfothreadsafe", "label": "appendToVMInfoThreadSafe()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1871"}, {"id": "utils_credutils_getfinderforvmwarecreds", "label": "GetFinderForVMwareCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1878"}, {"id": "utils_credutils_processsinglevm", "label": "processSingleVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1913"}, {"id": "utils_credutils_findhotplugbaseflavor", "label": "FindHotplugBaseFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2193"}, {"id": "utils_credutils_logoutvmwareclient", "label": "LogoutVMwareClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2214"}, {"id": "utils_credutils_cleanupcachedvmwareclient", "label": "CleanupCachedVMwareClient()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2245"}, {"id": "utils_credutils_getbackendpools", "label": "GetBackendPools()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2255"}, {"id": "utils_credutils_parsepoolname", "label": "parsePoolName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2349"}, {"id": "utils_credutils_extractcinderhost", "label": "extractCinderHost()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2371"}, {"id": "utils_credutils_buildbackendtovolumetypemap", "label": "buildBackendToVolumeTypeMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2381"}, {"id": "utils_credutils_getcindervolumeservicehosts", "label": "getCinderVolumeServiceHosts()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2419"}, {"id": "utils_credutils_getarrayvendor", "label": "GetArrayVendor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2463"}, {"id": "utils_credutils_contains", "label": "Contains()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2477"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_math", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_net_url", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L8", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L9", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_slices", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L10", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sync", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L12", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L13", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L15", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L16", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_schedulerstats", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L17", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_services", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_blockstorage_v3_volumetypes", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_servergroups", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_networks", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_networking_v2_ports", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_vmware", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_find", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_property", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_session_cache", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_view", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_vim25", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_mo", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwarecredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L56", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackcredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L61", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getarraycredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L66", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getarraycredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L75", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwarecredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L111", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L120", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackcredsinfofromcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L136", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_verifynetworks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L169", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_verifyports", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L200", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_verifystorage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L232", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L263", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getopenstackclients", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L363", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_validateandgetproviderclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L406", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_validateproviderclientfromcloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L496", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_validatevmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L552", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwnetworks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L641", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getvmwdatastore", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L690", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getandcreateallvms", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L735", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_countgpus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L845", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_detectgpuusage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L876", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_extractvirtualnics", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L883", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_resolvenetworkname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L936", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_finddvpgbykey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L995", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_guestnetworknameformac", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1022", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_extractguestnetworkinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1036", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_processvmdisk", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1067", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_appendunique", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1103", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createorupdatevmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1113", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createnewvmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1187", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_updateexistingvmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1216", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_updatevmwaremachinestatus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1276", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1303", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_migrationmatchesvmwaremachine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1351", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createorupdatelabel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1372", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_filtervmwaremachinesforcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1392", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_filtervmwarehostsforcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1403", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_filtervmwareclustersforcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1412", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_findvmwaremachinesnotinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1421", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_findvmwarehostsnotinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1445", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletestalevmwaremachines", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1460", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_vmexistsinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1476", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_hostexistsinvcenter", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1486", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletedependantobjectsforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1498", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwarecredssecret", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1519", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwaremachinesforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1535", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwareclustersforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1551", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_deletevmwarehostsforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1567", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_containsstring", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1583", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_isphaseupdatable", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1593", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_syncrdmdisks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1600", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_gethoststoragedeviceinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1724", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_populaterdmdiskinfofromattributes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1753", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getclusternamefromhost", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1787", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_createorupdaterdmdisks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1827", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getcindervolumebackendpools", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1849", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_appendtovmerrorsthreadsafe", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1865", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_appendtovminfothreadsafe", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1871", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getfinderforvmwarecreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1878", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_processsinglevm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1913", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_findhotplugbaseflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2193", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_logoutvmwareclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2214", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_cleanupcachedvmwareclient", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2245", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getbackendpools", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2255", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_parsepoolname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2349", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_extractcinderhost", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2371", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_buildbackendtovolumetypemap", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2381", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getcindervolumeservicehosts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2419", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_getarrayvendor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2463", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_credutils_go", "target": "utils_credutils_contains", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2477", "weight": 1.0}, {"source": "utils_credutils_getarraycredsinfo", "target": "utils_credutils_getarraycredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L71", "weight": 1.0}, {"source": "utils_credutils_getopenstackcredsinfofromcreds", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L165", "weight": 1.0}, {"source": "utils_credutils_verifynetworks", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L170", "weight": 1.0}, {"source": "utils_credutils_verifyports", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L201", "weight": 1.0}, {"source": "utils_credutils_verifystorage", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L233", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_getopenstackclients", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L264", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_getcindervolumebackendpools", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L294", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_buildbackendtovolumetypemap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L300", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_parsepoolname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L305", "weight": 1.0}, {"source": "utils_credutils_getopenstackinfo", "target": "utils_credutils_getopenstackcredsinfofromcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L325", "weight": 1.0}, {"source": "utils_credutils_getopenstackclients", "target": "utils_credutils_getopenstackcredsinfofromcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L368", "weight": 1.0}, {"source": "utils_credutils_getopenstackclients", "target": "utils_credutils_validateandgetproviderclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L376", "weight": 1.0}, {"source": "utils_credutils_validateandgetproviderclient", "target": "utils_credutils_validateproviderclientfromcloudsyaml", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L419", "weight": 1.0}, {"source": "utils_credutils_validateandgetproviderclient", "target": "utils_credutils_getopenstackcredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L422", "weight": 1.0}, {"source": "utils_credutils_validateandgetproviderclient", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L465", "weight": 1.0}, {"source": "utils_credutils_validateproviderclientfromcloudsyaml", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L526", "weight": 1.0}, {"source": "utils_credutils_validatevmwarecreds", "target": "utils_credutils_getvmwarecredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L553", "weight": 1.0}, {"source": "utils_credutils_validatevmwarecreds", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L611", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_getfinderforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L644", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_extractvirtualnics", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L664", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_resolvenetworkname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L674", "weight": 1.0}, {"source": "utils_credutils_getvmwnetworks", "target": "utils_credutils_guestnetworknameformac", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L678", "weight": 1.0}, {"source": "utils_credutils_getvmwdatastore", "target": "utils_credutils_getfinderforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L691", "weight": 1.0}, {"source": "utils_credutils_getandcreateallvms", "target": "utils_credutils_validatevmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L756", "weight": 1.0}, {"source": "utils_credutils_getandcreateallvms", "target": "utils_credutils_processsinglevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L824", "weight": 1.0}, {"source": "utils_credutils_detectgpuusage", "target": "utils_credutils_countgpus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L877", "weight": 1.0}, {"source": "utils_credutils_resolvenetworkname", "target": "utils_credutils_finddvpgbykey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L961", "weight": 1.0}, {"source": "utils_credutils_appendunique", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1105", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1135", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1163", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_createnewvmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1171", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_updateexistingvmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1178", "weight": 1.0}, {"source": "utils_credutils_createorupdatevmwaremachine", "target": "utils_credutils_updatevmwaremachinestatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1183", "weight": 1.0}, {"source": "utils_credutils_shouldskipvmwaremachinereconciliation", "target": "utils_credutils_migrationmatchesvmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1318", "weight": 1.0}, {"source": "utils_credutils_findvmwaremachinesnotinvcenter", "target": "utils_credutils_filtervmwaremachinesforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1422", "weight": 1.0}, {"source": "utils_credutils_findvmwaremachinesnotinvcenter", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1429", "weight": 1.0}, {"source": "utils_credutils_findvmwaremachinesnotinvcenter", "target": "utils_credutils_vmexistsinvcenter", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1437", "weight": 1.0}, {"source": "utils_credutils_findvmwarehostsnotinvcenter", "target": "utils_credutils_filtervmwarehostsforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1446", "weight": 1.0}, {"source": "utils_credutils_findvmwarehostsnotinvcenter", "target": "utils_credutils_hostexistsinvcenter", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1452", "weight": 1.0}, {"source": "utils_credutils_deletestalevmwaremachines", "target": "utils_credutils_findvmwaremachinesnotinvcenter", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1461", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwaremachinesforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1501", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwarehostsforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1504", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwareclustersforvmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1507", "weight": 1.0}, {"source": "utils_credutils_deletedependantobjectsforvmwarecreds", "target": "utils_credutils_deletevmwarecredssecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1511", "weight": 1.0}, {"source": "utils_credutils_deletevmwaremachinesforvmwarecreds", "target": "utils_credutils_filtervmwaremachinesforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1536", "weight": 1.0}, {"source": "utils_credutils_deletevmwareclustersforvmwarecreds", "target": "utils_credutils_filtervmwareclustersforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1552", "weight": 1.0}, {"source": "utils_credutils_deletevmwarehostsforvmwarecreds", "target": "utils_credutils_filtervmwarehostsforcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1568", "weight": 1.0}, {"source": "utils_credutils_syncrdmdisks", "target": "utils_credutils_isphaseupdatable", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1648", "weight": 1.0}, {"source": "utils_credutils_syncrdmdisks", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1654", "weight": 1.0}, {"source": "utils_credutils_syncrdmdisks", "target": "utils_credutils_appendunique", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1655", "weight": 1.0}, {"source": "utils_credutils_populaterdmdiskinfofromattributes", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1757", "weight": 1.0}, {"source": "utils_credutils_createorupdaterdmdisks", "target": "utils_credutils_syncrdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1841", "weight": 1.0}, {"source": "utils_credutils_getfinderforvmwarecreds", "target": "utils_credutils_validatevmwarecreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1879", "weight": 1.0}, {"source": "utils_credutils_getfinderforvmwarecreds", "target": "utils_credutils_logoutvmwareclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1886", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_appendtovmerrorsthreadsafe", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1929", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_gethoststoragedeviceinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1947", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_processvmdisk", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1960", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_populaterdmdiskinfofromattributes", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1968", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_appendunique", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1988", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_getclusternamefromhost", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2031", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_extractvirtualnics", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2041", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_resolvenetworkname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2051", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_guestnetworknameformac", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2055", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_extractguestnetworkinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2068", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_shouldskipvmwaremachinereconciliation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2097", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_appendtovminfothreadsafe", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2105", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2138", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_countgpus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2165", "weight": 1.0}, {"source": "utils_credutils_processsinglevm", "target": "utils_credutils_createorupdatevmwaremachine", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2186", "weight": 1.0}, {"source": "utils_credutils_logoutvmwareclient", "target": "utils_credutils_getvmwarecredentialsfromsecret", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2215", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_getopenstackcredsinfofromcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2260", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_validateandgetproviderclient", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2266", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_buildbackendtovolumetypemap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2280", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_getcindervolumeservicehosts", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2301", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_parsepoolname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2312", "weight": 1.0}, {"source": "utils_credutils_getbackendpools", "target": "utils_credutils_extractcinderhost", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2321", "weight": 1.0}, {"source": "utils_credutils_getarrayvendor", "target": "utils_credutils_contains", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2467", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_credutils_getvmwarecredsinfo", "callee": "GetVMwareCredsInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L57"}, {"caller_nid": "utils_credutils_getopenstackcredsinfo", "callee": "GetOpenstackCredsInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L62"}, {"caller_nid": "utils_credutils_getarraycredsinfo", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L68"}, {"caller_nid": "utils_credutils_getarraycredsinfo", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L69"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L77"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L78"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L82"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L85"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L86"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L87"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L88"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L91"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L94"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L97"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L100"}, {"caller_nid": "utils_credutils_getarraycredentialsfromsecret", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L100"}, {"caller_nid": "utils_credutils_getvmwarecredentialsfromsecret", "callee": "GetVMwareCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L112"}, {"caller_nid": "utils_credutils_getopenstackcredentialsfromsecret", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L121"}, {"caller_nid": "utils_credutils_getopenstackcredsinfofromcreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L138"}, {"caller_nid": "utils_credutils_getopenstackcredsinfofromcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L141"}, {"caller_nid": "utils_credutils_getopenstackcredsinfofromcreds", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L145"}, {"caller_nid": "utils_credutils_getopenstackcredsinfofromcreds", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L147"}, {"caller_nid": "utils_credutils_getopenstackcredsinfofromcreds", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L148"}, {"caller_nid": "utils_credutils_getopenstackcredsinfofromcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L150"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L172"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L174"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L174"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L176"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "ExtractNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L179"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L181"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L185"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L186"}, {"caller_nid": "utils_credutils_verifynetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L193"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L203"}, {"caller_nid": "utils_credutils_verifyports", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L206"}, {"caller_nid": "utils_credutils_verifyports", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L206"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L208"}, {"caller_nid": "utils_credutils_verifyports", "callee": "ExtractPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L211"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L213"}, {"caller_nid": "utils_credutils_verifyports", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L217"}, {"caller_nid": "utils_credutils_verifyports", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L218"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L225"}, {"caller_nid": "utils_credutils_verifyports", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L225"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L235"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L237"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L237"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L239"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "ExtractVolumeTypes", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L242"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L244"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L249"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L256"}, {"caller_nid": "utils_credutils_verifystorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L256"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L266"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L271"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L271"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L273"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ExtractVolumeTypes", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L276"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L278"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L281"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L282"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L285"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L285"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L287"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ExtractNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L290"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L292"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L296"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L299"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L302"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L302"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L318"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L319"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L327"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ListSecurityGroupInfos", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L330"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L332"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L336"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L337"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L337"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "ExtractServerGroups", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L339"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L342"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L345"}, {"caller_nid": "utils_credutils_getopenstackinfo", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L346"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L365"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L370"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L378"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L378"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L381"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "NewComputeV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L383"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L385"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L385"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L387"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L389"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L389"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "NewNetworkV2", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L392"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L394"}, {"caller_nid": "utils_credutils_getopenstackclients", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L394"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L412"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L416"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L418"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L424"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L427"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L429"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L431"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L435"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L437"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L438"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L438"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L440"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L440"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L443"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L444"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L446"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L463"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L465"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L466"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L467"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L468"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L469"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L470"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L472"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "VerifyCredentialsMatchCurrentEnvironment", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L476"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L478"}, {"caller_nid": "utils_credutils_validateandgetproviderclient", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L481"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L499"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "NewClient", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L504"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L506"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "NewVjbNet", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L509"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L513"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L514"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L514"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "SetTimeout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L516"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L516"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "CreateSecureHTTPClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L518"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "GetClient", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L519"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L521"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Authenticate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L524"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L526"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L527"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L528"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L529"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L530"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L531"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L533"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "VerifyCredentialsMatchCurrentEnvironment", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L538"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L539"}, {"caller_nid": "utils_credutils_validateproviderclientfromcloudsyaml", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L542"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L555"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "NormalizeVCenterURL", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L563"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "UserPassword", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L568"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L575"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Load", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L581"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L584"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "UserSession", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L585"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L591"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L594"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L596"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L602"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Login", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L606"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L609"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L611"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L612"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L616"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Pow", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L619"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "float64", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L619"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L620"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L621"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L621"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L626"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L629"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L630"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L632"}, {"caller_nid": "utils_credutils_validatevmwarecreds", "callee": "Store", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L636"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L643"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L646"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "VirtualMachine", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L650"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L652"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L657"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L657"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L659"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L666"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L679"}, {"caller_nid": "utils_credutils_getvmwnetworks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L684"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L693"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "VirtualMachine", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L697"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L699"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L703"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L703"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L705"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L713"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L715"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L717"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L721"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L721"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L723"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L723"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L725"}, {"caller_nid": "utils_credutils_getvmwdatastore", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L728"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L744"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L746"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L748"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L753"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L758"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L760"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "DatacenterList", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L761"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L763"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L766"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L766"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L768"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L768"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L772"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L776"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L777"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L781"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L785"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L786"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L788"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "SetDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L791"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "VirtualMachineList", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L793"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L795"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L799"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L801"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L805"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L805"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Add", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L810"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Done", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L812"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "recover", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L817"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L818"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L819"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L820"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L823"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Wait", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L828"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L831"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L833"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L834"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L834"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L834"}, {"caller_nid": "utils_credutils_getandcreateallvms", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L837"}, {"caller_nid": "utils_credutils_detectgpuusage", "callee": "HasGPU", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L878"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "GetVirtualEthernetCard", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L898"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L904"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L917"}, {"caller_nid": "utils_credutils_extractvirtualnics", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L918"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L939"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L944"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L944"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L945"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L953"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L953"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L964"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L967"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "CreateContainerView", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L968"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L970"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Destroy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L972"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Retrieve", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L974"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L975"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L984"}, {"caller_nid": "utils_credutils_resolvenetworkname", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L987"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L996"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "CreateContainerView", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L997"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1000"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Destroy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1002"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Retrieve", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1005"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1008"}, {"caller_nid": "utils_credutils_finddvpgbykey", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1015"}, {"caller_nid": "utils_credutils_guestnetworknameformac", "callee": "EqualFold", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1027"}, {"caller_nid": "utils_credutils_extractguestnetworkinfo", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1050"}, {"caller_nid": "utils_credutils_extractguestnetworkinfo", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1051"}, {"caller_nid": "utils_credutils_extractguestnetworkinfo", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1056"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1068"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1071"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1074"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1080"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "GetDescription", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1081"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "GetScsiLun", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1085"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1090"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1095"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1095"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "GetDescription", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1095"}, {"caller_nid": "utils_credutils_processvmdisk", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1096"}, {"caller_nid": "utils_credutils_appendunique", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1106"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetVMK8sCompatibleName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1115"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1117"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1130"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1131"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1132"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1140"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1140"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1152"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1154"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetClusterK8sID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1156"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1157"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1159"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1164"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1165"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1165"}, {"caller_nid": "utils_credutils_createorupdatevmwaremachine", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1170"}, {"caller_nid": "utils_credutils_createnewvmwaremachine", "callee": "Create", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1209"}, {"caller_nid": "utils_credutils_createnewvmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1210"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1221"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1227"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Update", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1231"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1232"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1238"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1238"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1238"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1260"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Update", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1268"}, {"caller_nid": "utils_credutils_updateexistingvmwaremachine", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1269"}, {"caller_nid": "utils_credutils_updatevmwaremachinestatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1295"}, {"caller_nid": "utils_credutils_updatevmwaremachinestatus", "callee": "Status", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1295"}, {"caller_nid": "utils_credutils_updatevmwaremachinestatus", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1296"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1308"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1311"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1314"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1315"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1316"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1319"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1319"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1326"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1330"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1330"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1331"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1338"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1338"}, {"caller_nid": "utils_credutils_shouldskipvmwaremachinereconciliation", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1345"}, {"caller_nid": "utils_credutils_createorupdatelabel", "callee": "CreateOrUpdate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1375"}, {"caller_nid": "utils_credutils_createorupdatelabel", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1377"}, {"caller_nid": "utils_credutils_createorupdatelabel", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1386"}, {"caller_nid": "utils_credutils_filtervmwaremachinesforcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1396"}, {"caller_nid": "utils_credutils_filtervmwaremachinesforcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1396"}, {"caller_nid": "utils_credutils_filtervmwaremachinesforcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1397"}, {"caller_nid": "utils_credutils_filtervmwarehostsforcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1405"}, {"caller_nid": "utils_credutils_filtervmwarehostsforcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1405"}, {"caller_nid": "utils_credutils_filtervmwarehostsforcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1406"}, {"caller_nid": "utils_credutils_filtervmwareclustersforcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1414"}, {"caller_nid": "utils_credutils_filtervmwareclustersforcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1414"}, {"caller_nid": "utils_credutils_filtervmwareclustersforcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1415"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1424"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1431"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1431"}, {"caller_nid": "utils_credutils_findvmwaremachinesnotinvcenter", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1438"}, {"caller_nid": "utils_credutils_findvmwarehostsnotinvcenter", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1448"}, {"caller_nid": "utils_credutils_findvmwarehostsnotinvcenter", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1453"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1463"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1466"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1467"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1468"}, {"caller_nid": "utils_credutils_deletestalevmwaremachines", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1468"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1500"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Name", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1500"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1502"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1505"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1508"}, {"caller_nid": "utils_credutils_deletedependantobjectsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1512"}, {"caller_nid": "utils_credutils_deletevmwarecredssecret", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1526"}, {"caller_nid": "utils_credutils_deletevmwarecredssecret", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1527"}, {"caller_nid": "utils_credutils_deletevmwarecredssecret", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1528"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1538"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1541"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1542"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1543"}, {"caller_nid": "utils_credutils_deletevmwaremachinesforvmwarecreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1543"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1554"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1557"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1558"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1559"}, {"caller_nid": "utils_credutils_deletevmwareclustersforvmwarecreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1559"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1570"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1573"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1574"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1575"}, {"caller_nid": "utils_credutils_deletevmwarehostsforvmwarecreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1575"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1603"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1606"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1607"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1612"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1612"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1622"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1623"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1639"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1640"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1645"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1646"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1647"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1663"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "SetOwnerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1670"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Scheme", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1670"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1671"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1675"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1677"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1679"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1679"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1685"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "SetOwnerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1702"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Scheme", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1702"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1703"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1705"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1707"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1708"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1711"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1713"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1716"}, {"caller_nid": "utils_credutils_syncrdmdisks", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1717"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "HostSystem", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1725"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1727"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Load", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1730"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1730"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1734"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1738"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1738"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1740"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "Store", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1742"}, {"caller_nid": "utils_credutils_gethoststoragedeviceinfo", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1742"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1754"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1758"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1759"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1763"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1766"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1768"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1769"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1770"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1771"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1773"}, {"caller_nid": "utils_credutils_populaterdmdiskinfofromattributes", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1775"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1796"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1796"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1798"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1806"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1806"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1808"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1814"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1814"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1816"}, {"caller_nid": "utils_credutils_getclusternamefromhost", "callee": "Printf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1821"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1830"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "Range", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1832"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1835"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1835"}, {"caller_nid": "utils_credutils_createorupdaterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1838"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1850"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1850"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1852"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "ExtractStoragePools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1854"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1856"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1858"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1858"}, {"caller_nid": "utils_credutils_getcindervolumebackendpools", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1860"}, {"caller_nid": "utils_credutils_appendtovmerrorsthreadsafe", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1866"}, {"caller_nid": "utils_credutils_appendtovmerrorsthreadsafe", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1867"}, {"caller_nid": "utils_credutils_appendtovmerrorsthreadsafe", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1868"}, {"caller_nid": "utils_credutils_appendtovminfothreadsafe", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1872"}, {"caller_nid": "utils_credutils_appendtovminfothreadsafe", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1873"}, {"caller_nid": "utils_credutils_appendtovminfothreadsafe", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1874"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1881"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "CloseIdleConnections", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1884"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1887"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1887"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "NewFinder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1891"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1894"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1896"}, {"caller_nid": "utils_credutils_getfinderforvmwarecreds", "callee": "SetDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1898"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1916"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1917"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1919"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Properties", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1921"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1921"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1929"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1929"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1934"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1934"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1939"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetVirtualDevice", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1943"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1949"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1949"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1953"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1954"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1960"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1962"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1962"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1966"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1967"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1967"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1970"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1970"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Load", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1973"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Error", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1976"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1976"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1976"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1981"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1982"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1982"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1988"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Sort", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1989"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Lock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1991"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "LoadOrStore", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1992"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1992"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1995"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Sort", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1997"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Store", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1998"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L1998"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Unlock", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2001"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2005"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2007"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2007"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetDescription", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2014"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2015"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2020"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "RetrieveOne", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2025"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "DefaultCollector", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2025"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2027"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2027"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetClusterK8sID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2033"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2035"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2035"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2036"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2036"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2043"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2043"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2043"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2056"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2060"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2061"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2064"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2070"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2070"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2070"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "GetVMK8sCompatibleName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2074"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2074"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2074"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2076"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2076"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Namespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2080"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2083"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2085"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2092"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2092"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2099"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2108"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2113"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2118"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2132"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2142"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2160"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Reference", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2169"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2176"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "int", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2177"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2188"}, {"caller_nid": "utils_credutils_processsinglevm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2188"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2194"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "ListDetail", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2194"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "TODO", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2194"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2196"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "ExtractFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2199"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2201"}, {"caller_nid": "utils_credutils_findhotplugbaseflavor", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2210"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2217"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2217"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "NormalizeVCenterURL", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2225"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2227"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2227"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "UserPassword", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2230"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2236"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2238"}, {"caller_nid": "utils_credutils_logoutvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2238"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2246"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2247"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2249"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2250"}, {"caller_nid": "utils_credutils_cleanupcachedvmwareclient", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2250"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2256"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2257"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2262"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2268"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "NewBlockStorageV3", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2272"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2276"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2282"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2283"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2287"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2287"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2287"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2289"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "ExtractStoragePools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2292"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2294"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2297"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2297"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2298"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2303"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2304"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2308"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2318"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2322"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2330"}, {"caller_nid": "utils_credutils_getbackendpools", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2332"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2351"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2352"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "SplitN", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2357"}, {"caller_nid": "utils_credutils_parsepoolname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2359"}, {"caller_nid": "utils_credutils_extractcinderhost", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2373"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2382"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2385"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2385"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2387"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "ExtractVolumeTypes", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2390"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2392"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2395"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2395"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2398"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2403"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2407"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2410"}, {"caller_nid": "utils_credutils_buildbackendtovolumetypemap", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2410"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2420"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "AllPages", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2427"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "List", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2427"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2429"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "ExtractServices", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2432"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2434"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2437"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2437"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2441"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2445"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Split", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2450"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2451"}, {"caller_nid": "utils_credutils_getcindervolumeservicehosts", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2454"}, {"caller_nid": "utils_credutils_getarrayvendor", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/credutils.go", "source_location": "L2465"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/ba493c0617093dada73ed6e20bfb222fc9b91b3b97cb89af30ef7d7a0bcb3b03.json b/graphify-out/cache/ast/ba493c0617093dada73ed6e20bfb222fc9b91b3b97cb89af30ef7d7a0bcb3b03.json new file mode 100644 index 000000000..922cc367e --- /dev/null +++ b/graphify-out/cache/ast/ba493c0617093dada73ed6e20bfb222fc9b91b3b97cb89af30ef7d7a0bcb3b03.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "label": "clouds_yaml_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L1"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "label": "TestParseCloudsYAML_SingleEntryEmptyName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L107"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "label": "TestParseCloudsYAML_MultiEntryNamed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L132"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "label": "TestParseCloudsYAML_MultiEntryEmptyNameAmbiguous()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L154"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "label": "TestParseCloudsYAML_CloudNotFound()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L165"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "label": "TestParseCloudsYAML_InvalidYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L172"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "label": "TestParseCloudsYAML_MissingAuthURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L179"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "label": "TestParseCloudsYAML_UnknownAuthType()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L189"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "label": "TestParseCloudsYAML_AppCredentialAndMicroversions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L199"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "label": "TestParseCloudsYAML_CacertInlineAccepted()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L222"}, {"id": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "label": "TestParseCloudsYAML_CacertPathRejected()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L232"}, {"id": "utils_clouds_yaml_test_testcloudnames_multientry", "label": "TestCloudNames_MultiEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L239"}, {"id": "utils_clouds_yaml_test_testcloudnames_singleentry", "label": "TestCloudNames_SingleEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L256"}, {"id": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "label": "TestCloudNames_InvalidYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L266"}, {"id": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "label": "TestSecretContainsCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L273"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_sort", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L5", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L7", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L107", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L132", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L154", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L165", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L172", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L179", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L189", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L199", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L222", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L232", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_multientry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L239", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_singleentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L256", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L266", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_test_go", "target": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L273", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L108"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L110"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L113"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L116"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L119"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L122"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L125"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_singleentryemptyname", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L128"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L133"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L135"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L138"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L141"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L144"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L147"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientrynamed", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L150"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L155"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L156"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L157"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L159"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L160"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L160"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_multientryemptynameambiguous", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L161"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L166"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L167"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cloudnotfound", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L168"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L173"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L174"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_invalidyaml", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L175"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L180"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L181"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L182"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L184"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L184"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_missingauthurl", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L185"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L190"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L191"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L192"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L194"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L194"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_unknownauthtype", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L195"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L200"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L202"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L205"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L212"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L212"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L213"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_appcredentialandmicroversions", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L217"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L223"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L225"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L227"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertinlineaccepted", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L228"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L233"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L234"}, {"caller_nid": "utils_clouds_yaml_test_testparsecloudsyaml_cacertpathrejected", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L235"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L240"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L242"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Strings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L244"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L246"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L246"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L247"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_multientry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L251"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L257"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L259"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L261"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_singleentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L262"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "CloudNames", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L267"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L268"}, {"caller_nid": "utils_clouds_yaml_test_testcloudnames_invalidyaml", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L269"}, {"caller_nid": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L297"}, {"caller_nid": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L298"}, {"caller_nid": "utils_clouds_yaml_test_testsecretcontainscloudsyaml", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml_test.go", "source_location": "L299"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/c85a582cb0e837a2e2dcc65a2d9813905982cbb9ed985e6d497a1fa14821f25f.json b/graphify-out/cache/ast/c85a582cb0e837a2e2dcc65a2d9813905982cbb9ed985e6d497a1fa14821f25f.json new file mode 100644 index 000000000..b0b47fc3d --- /dev/null +++ b/graphify-out/cache/ast/c85a582cb0e837a2e2dcc65a2d9813905982cbb9ed985e6d497a1fa14821f25f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "label": "openstackcreds_types.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L1"}, {"id": "v1alpha1_hostconfig", "label": "HostConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L26"}, {"id": "v1alpha1_openstackcredsinfo", "label": "OpenStackCredsInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L39"}, {"id": "v1alpha1_securitygroupinfo", "label": "SecurityGroupInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L59"}, {"id": "v1alpha1_servergroupinfo", "label": "ServerGroupInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L66"}, {"id": "v1alpha1_pcdnetworkinfo", "label": "PCDNetworkInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L74"}, {"id": "v1alpha1_openstackinfo", "label": "OpenstackInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L80"}, {"id": "v1alpha1_openstackcredsspec", "label": "OpenstackCredsSpec", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L90"}, {"id": "v1alpha1_openstackcredsstatus", "label": "OpenstackCredsStatus", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L134"}, {"id": "v1alpha1_openstackcreds", "label": "OpenstackCreds", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L174"}, {"id": "v1alpha1_openstackcredslist", "label": "OpenstackCredsList", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L185"}, {"id": "v1alpha1_openstackcredsspec_deepcopyinto", "label": ".DeepCopyInto()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L193"}, {"id": "v1alpha1_openstackcreds_types_init", "label": "init()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L210"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_hostconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L26", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L39", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_securitygroupinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L59", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_servergroupinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L66", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_pcdnetworkinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L74", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L80", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsspec", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L90", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsstatus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L134", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L174", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredslist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L185", "weight": 1.0}, {"source": "v1alpha1_openstackcredsspec", "target": "v1alpha1_openstackcredsspec_deepcopyinto", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L193", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcreds_types_init", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L210", "weight": 1.0}], "raw_calls": [{"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L198"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L198"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "copy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L199"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L203"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L203"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "DeepCopyInto", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L205"}, {"caller_nid": "v1alpha1_openstackcreds_types_init", "callee": "Register", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L211"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/cfb553171695e60a9f8b5a1c5ac0a9a13c604cae32525fecf108962539514fdf.json b/graphify-out/cache/ast/cfb553171695e60a9f8b5a1c5ac0a9a13c604cae32525fecf108962539514fdf.json new file mode 100644 index 000000000..4c091da39 --- /dev/null +++ b/graphify-out/cache/ast/cfb553171695e60a9f8b5a1c5ac0a9a13c604cae32525fecf108962539514fdf.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "label": "conditions.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L1"}, {"id": "utils_conditions_setcondition", "label": "SetCondition()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L81"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L11", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_go", "target": "utils_conditions_setcondition", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions.go", "source_location": "L81", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/d3271ead94af2729883e7aea39a973a1254c2e00bfd6da44b51a52184ad1c5e1.json b/graphify-out/cache/ast/d3271ead94af2729883e7aea39a973a1254c2e00bfd6da44b51a52184ad1c5e1.json new file mode 100644 index 000000000..7e8979f56 --- /dev/null +++ b/graphify-out/cache/ast/d3271ead94af2729883e7aea39a973a1254c2e00bfd6da44b51a52184ad1c5e1.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "label": "openstackcreds_controller_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L1"}, {"id": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "label": "TestApplyValidationResult_ValidationFailure()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L43"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_github_com_onsi_ginkgo_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_github_com_onsi_gomega", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client_fake", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_test_go", "target": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L43", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "NewScheme", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L44"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "AddToScheme", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L45"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L57"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L62"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L68"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Build", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L72"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "WithStatusSubresource", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L72"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "WithObjects", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L72"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "WithScheme", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L72"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "NewClientBuilder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L72"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "applyValidationResult", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L84"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L84"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L87"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L87"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L88"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "FindStatusCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L92"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L95"}, {"caller_nid": "controller_openstackcreds_controller_test_testapplyvalidationresult_validationfailure", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller_test.go", "source_location": "L98"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/dca3fbfa816b37c135741217ddf8128ceac0f9284f831f53b7841f5ad7d3a353.json b/graphify-out/cache/ast/dca3fbfa816b37c135741217ddf8128ceac0f9284f831f53b7841f5ad7d3a353.json new file mode 100644 index 000000000..e0fda322e --- /dev/null +++ b/graphify-out/cache/ast/dca3fbfa816b37c135741217ddf8128ceac0f9284f831f53b7841f5ad7d3a353.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L52"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L120"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L145"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L159"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L260"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L304"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L354"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L374"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L448"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L484"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L502"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"id": "controller_openstackcreds_controller_parsefailurereason", "label": "parseFailureReason()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L603"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L636"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L671"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L691"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L735"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L759"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L786"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L823"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L52", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L120", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L145", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L159", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L260", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L304", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L354", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L374", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L448", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L484", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L502", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_parsefailurereason", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L603", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L636", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L671", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L691", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L735", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L759", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L786", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L823", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L113", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L117", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L124", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L127", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L132", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L266", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L274", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L284", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L297", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L368", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377", "weight": 1.0}, {"source": "controller_openstackcreds_controller_setconditionsforinvalidresult", "target": "controller_openstackcreds_controller_parsefailurereason", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L552", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L604", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L608", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L625", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L629", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L728", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L782", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L79"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L79"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L84"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L87"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L91"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L97"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L105"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L136"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L138"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L142"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L148"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L153"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L167"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L172"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L175"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L178"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L230"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L232"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L253"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L256"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L264"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L273"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L280"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L287"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L290"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L298"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L306"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L310"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L311"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L312"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L315"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L319"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L325"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L330"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L334"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L336"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L340"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L341"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L342"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L345"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L356"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L358"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L360"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L367"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L381"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L382"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L387"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L387"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L394"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L401"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L403"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L405"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L405"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L435"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L436"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L440"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L441"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L444"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L452"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L453"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L458"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L461"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L472"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L488"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L492"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L509"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L509"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L515"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L518"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L520"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L521"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L536"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L537"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L538"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L539"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L540"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L554"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L566"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L566"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L568"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L573"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L574"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L587"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L589"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L591"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L595"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L597"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L638"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L640"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L640"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L641"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L643"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L645"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L652"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L653"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L654"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L655"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L662"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L664"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredsInfoFromCreds", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L673"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L675"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L676"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L680"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L684"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L685"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L686"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L693"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L694"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L696"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L697"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L702"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L703"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L712"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L713"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L717"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L721"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L723"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L724"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L742"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L744"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L744"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L745"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L753"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L754"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L760"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L766"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L771"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L776"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L777"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L781"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L788"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L792"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L795"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L797"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L802"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L804"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L808"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L810"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L812"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L814"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L816"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L818"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L824"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L825"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L826"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L827"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/ddb53e61dd66d7d56e521f01df4a6723e62066e37cf308c7c837dfeb184b8aaf.json b/graphify-out/cache/ast/ddb53e61dd66d7d56e521f01df4a6723e62066e37cf308c7c837dfeb184b8aaf.json new file mode 100644 index 000000000..57e0bc49d --- /dev/null +++ b/graphify-out/cache/ast/ddb53e61dd66d7d56e521f01df4a6723e62066e37cf308c7c837dfeb184b8aaf.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "label": "migrationplan_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1"}, {"id": "controller_migrationplanreconciler", "label": "MigrationPlanReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77"}, {"id": "controller_migrationplanreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106"}, {"id": "controller_migrationplanreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161"}, {"id": "controller_migrationplanreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177"}, {"id": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "label": ".getMigrationTemplateAndCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197"}, {"id": "controller_migrationplanreconciler_reconcilepostmigration", "label": ".reconcilePostMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228"}, {"id": "controller_migrationplanreconciler_renamevm", "label": ".renameVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302"}, {"id": "controller_migrationplanreconciler_movevmtofolder", "label": ".moveVMToFolder()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334"}, {"id": "controller_migrationplan_controller_createvcenterclientanddc", "label": "createVCenterClientAndDC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373"}, {"id": "controller_migrationplan_controller_extractvcentercredentials", "label": "extractVCenterCredentials()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403"}, {"id": "controller_migrationplan_controller_getvmwaremachineforvm", "label": "GetVMwareMachineForVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426"}, {"id": "controller_migrationplanreconciler_reconcilemigrationplanjob", "label": ".ReconcileMigrationPlanJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471"}, {"id": "controller_migrationplanreconciler_checkandhandlepausedplan", "label": ".checkAndHandlePausedPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765"}, {"id": "controller_migrationplanreconciler_processmigrationphases", "label": ".processMigrationPhases()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778"}, {"id": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "label": ".handleRDMDiskMigrationError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843"}, {"id": "controller_migrationplanreconciler_updatemigrationplanstatus", "label": ".UpdateMigrationPlanStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900"}, {"id": "controller_migrationplanreconciler_createmigration", "label": ".CreateMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932"}, {"id": "controller_migrationplan_controller_buildcloudsyamlenvvars", "label": "buildCloudsYAMLEnvVars()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054"}, {"id": "controller_migrationplanreconciler_createjob", "label": ".CreateJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1111"}, {"id": "controller_migrationplanreconciler_createfirstbootconfigmap", "label": ".CreateFirstbootConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375"}, {"id": "controller_migrationplanreconciler_createmigrationconfigmap", "label": ".CreateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410"}, {"id": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "label": ".buildNewMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439"}, {"id": "controller_migrationplan_controller_resolvevirtiodriverurl", "label": "resolveVirtioDriverURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1509"}, {"id": "controller_migrationplanreconciler_processadvancedoptions", "label": ".processAdvancedOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516"}, {"id": "controller_migrationplan_controller_computesourcevmkey", "label": "computeSourceVMKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1555"}, {"id": "controller_migrationplan_controller_vmkeydisplayname", "label": "vmKeyDisplayName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1573"}, {"id": "controller_migrationplanreconciler_buildbaseconfigmapdata", "label": ".buildBaseConfigMapData()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1587"}, {"id": "controller_migrationplanreconciler_setmigrationspecificfields", "label": ".setMigrationSpecificFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1624"}, {"id": "controller_migrationplanreconciler_determineandsettargetflavor", "label": ".determineAndSetTargetFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1630"}, {"id": "controller_migrationplanreconciler_setosfamilyandstoragefields", "label": ".setOSFamilyAndStorageFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1675"}, {"id": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "label": ".setImageMetadataFromProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1708"}, {"id": "controller_migrationplanreconciler_resolveimageprofiles", "label": ".resolveImageProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1763"}, {"id": "controller_migrationplanreconciler_updatemigrationconfigmap", "label": ".updateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1808"}, {"id": "controller_migrationplanreconciler_createresource", "label": ".createResource()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830"}, {"id": "controller_migrationplanreconciler_checkstatussuccess", "label": ".checkStatusSuccess()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843"}, {"id": "controller_migrationplanreconciler_reconcilemapping", "label": ".reconcileMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1885"}, {"id": "controller_migrationplan_controller_getdatastoresforvolumemapping", "label": "getDatastoresForVolumeMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1921"}, {"id": "controller_migrationplanreconciler_reconcilenetwork", "label": ".reconcileNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1936"}, {"id": "controller_migrationplanreconciler_reconcilestorage", "label": ".reconcileStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2009"}, {"id": "controller_migrationplanreconciler_triggermigration", "label": ".TriggerMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2055"}, {"id": "controller_migrationplanreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2198"}, {"id": "controller_migrationplanreconciler_validatevddkpresence", "label": ".validateVDDKPresence()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2234"}, {"id": "controller_migrationplan_controller_mergelabels", "label": "MergeLabels()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2330"}, {"id": "controller_migrationplanreconciler_migraterdmdisks", "label": ".migrateRDMdisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2342"}, {"id": "controller_migrationplanreconciler_validatevmos", "label": ".validateVMOS()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2485"}, {"id": "controller_migrationplanreconciler_validatemigrationplanvms", "label": ".validateMigrationPlanVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2506"}, {"id": "controller_migrationplanreconciler_updatemigrationphasewithretry", "label": ".updateMigrationPhaseWithRetry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2567"}, {"id": "controller_migrationplanreconciler_isvmsucceededinplan", "label": ".isVMSucceededInPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2621"}, {"id": "controller_migrationplanreconciler_markmigrationvalidationfailed", "label": ".markMigrationValidationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2637"}, {"id": "controller_migrationplanreconciler_markmigrationfailed", "label": ".markMigrationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2651"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os_user", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strconv", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_go_logr_logr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_verrors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_vpwned_sdk_storage_netapp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vcenter", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_batch_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_resource", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_util_wait", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_utils_ptr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L55", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L56", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L57", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L58", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L59", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L60", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_event", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L61", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L62", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L63", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L65", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L66", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L67", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplanreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_renamevm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_buildcloudsyamlenvvars", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1111", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1509", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1555", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1573", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1587", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1624", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1630", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1675", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1708", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1763", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1808", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createresource", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1885", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1921", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1936", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2009", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_triggermigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2055", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2198", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2234", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_mergelabels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2330", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2342", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevmos", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2485", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2506", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2567", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2621", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2637", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2651", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L155", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilenormal", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L169", "weight": 1.0}, {"source": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L213", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L253", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L258", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L267", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_renamevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L288", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L294", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L557", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L594", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L606", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L618", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L659", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L711", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L713", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_triggermigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L722", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L742", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L795", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L813", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L855", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L881", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplan_controller_mergelabels", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L990", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L991", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplan_controller_buildcloudsyamlenvvars", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1175", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1366", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createfirstbootconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1400", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1427", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1432", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1451", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1453", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1458", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1463", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1464", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1478", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1480", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1484", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1488", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1500", "weight": 1.0}, {"source": "controller_migrationplan_controller_computesourcevmkey", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1563", "weight": 1.0}, {"source": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1726", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1891", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1902", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1909", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1910", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2083", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2128", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2145", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2150", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2154", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2159", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2168", "weight": 1.0}, {"source": "controller_migrationplanreconciler_migraterdmdisks", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2369", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2522", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_validatevmos", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2527", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2558", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationvalidationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2645", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2659", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L107"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L110"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L111"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L115"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "ValidateMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L118"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L120"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L125"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L127"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L128"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L132"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L133"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "NewMigrationPlanScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L137"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L143"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L148"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L154"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L167"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L171"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L189"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L190"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L191"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L201"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L204"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L208"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L209"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L214"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L218"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L222"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L232"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L235"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L241"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L245"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L255"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L260"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L264"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L269"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L275"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L279"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L280"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L282"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L289"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L295"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L308"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L312"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L314"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L315"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L317"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L320"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "RenameVM", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L321"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L324"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L327"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L330"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L340"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L344"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L348"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L349"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMWithDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L350"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L351"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L353"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L356"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L359"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "MovetoFolder", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L361"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L363"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L366"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L367"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L369"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L377"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L378"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "VCenterClientBuilder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L380"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L382"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L383"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L385"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L388"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L392"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L393"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L395"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L396"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L398"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L406"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L411"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L416"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L419"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L420"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L421"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L428"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L430"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L435"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L440"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L441"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L443"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L448"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L454"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L458"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L461"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L463"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L476"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L478"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L480"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L484"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L492"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L495"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L496"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L497"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L501"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L528"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L532"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L534"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L536"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L537"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L548"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L553"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L559"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L563"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L565"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L567"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L570"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L572"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L577"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L586"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L592"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L598"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L608"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L614"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L622"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L635"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L641"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L647"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L660"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L666"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L674"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L675"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L679"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L680"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L684"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L685"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L687"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L688"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L699"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L725"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L728"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L734"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L737"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L738"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L739"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L758"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "IsMigrationPlanPaused", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L766"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L771"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L772"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L789"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L794"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L796"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L801"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L805"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L815"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L816"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L819"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L821"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L824"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L825"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L828"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L832"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L846"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L849"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L850"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L856"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L867"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L870"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L871"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L873"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L886"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L887"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L888"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L892"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L893"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L894"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L903"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L906"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L936"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L938"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L940"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L942"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L944"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L951"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L952"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L954"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L956"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L962"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L965"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "SanitizeLabelValue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L970"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L987"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L993"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L999"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1002"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1004"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1012"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1015"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1020"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1022"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1026"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1033"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1035"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1056"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1060"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1062"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1065"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1067"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1073"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1078"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1079"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1080"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1082"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1088"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1089"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1092"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1093"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1094"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1095"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1096"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1097"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1098"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1099"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "MicroversionsToEnvVars", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1103"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1104"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1123"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1125"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1127"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1129"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetJobNameForVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1131"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1133"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1155"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1160"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1177"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1178"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1180"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1185"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1187"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1191"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1192"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1193"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1193"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1222"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1229"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1261"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1269"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1302"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1303"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1304"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1307"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1308"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1309"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1320"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1329"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1348"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1357"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1367"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1367"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1368"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1368"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1378"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1380"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1382"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1384"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetFirstbootConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1386"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1388"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1389"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1390"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1390"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1402"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1402"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1403"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1418"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1420"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetMigrationConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1422"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1425"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1426"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1455"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1466"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1468"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1469"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1471"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1474"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1502"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1502"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1503"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1524"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1528"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1529"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1530"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1535"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1536"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1537"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1542"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1543"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1544"}, {"caller_nid": "controller_migrationplan_controller_computesourcevmkey", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1557"}, {"caller_nid": "controller_migrationplan_controller_vmkeydisplayname", "callee": "LastIndex", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1574"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1601"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1602"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1603"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1604"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1605"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1606"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1608"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1611"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1613"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1614"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1616"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1617"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1618"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1619"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1620"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1641"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1643"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1650"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "FilterFlavorsByAvailabilityZone", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1651"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1654"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1658"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1660"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1666"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1668"}, {"caller_nid": "controller_migrationplanreconciler_setosfamilyandstoragefields", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1682"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1716"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1721"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1723"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1728"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1730"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1735"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1736"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1738"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1742"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1749"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1753"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1755"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1757"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1771"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1776"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1777"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1778"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1781"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1785"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1793"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1812"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1814"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1815"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1817"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1819"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1821"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1823"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1825"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1831"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1833"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1835"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1837"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1849"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1851"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1857"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1859"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1860"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1865"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1873"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "IsStatusConditionTrue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1874"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1876"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1879"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1893"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1896"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1900"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1904"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1912"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1922"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1923"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1923"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1925"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1927"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1945"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1951"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1953"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1960"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1962"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1972"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1978"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1983"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1990"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1993"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1994"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1996"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1998"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2000"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2000"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2002"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2017"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2019"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2025"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2030"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2036"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2039"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2040"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2042"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2044"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2046"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2046"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2048"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2064"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2073"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetOpenStackClients", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2075"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2077"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "FindHotplugBaseFlavor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2080"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2082"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2084"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2088"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2092"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2095"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2103"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2105"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2107"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2110"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "MergeFrom", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2119"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2119"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Patch", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2121"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2122"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2124"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2130"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2136"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2137"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2141"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2144"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2146"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2152"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2156"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2180"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2180"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2186"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2187"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2199"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2199"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Owns", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2199"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2199"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2199"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2201"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Current", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2239"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "ReadDir", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2247"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2249"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2257"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2263"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2266"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2269"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2269"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2270"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2273"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2276"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2277"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2282"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2287"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2290"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2291"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2291"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2292"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2296"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2303"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2309"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2310"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2312"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2313"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2319"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2319"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2322"}, {"caller_nid": "controller_migrationplan_controller_mergelabels", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2331"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2344"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2346"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2348"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2349"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2354"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2355"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2359"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2363"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2370"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2370"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2370"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2371"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2376"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2376"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2379"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2379"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2383"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2383"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2383"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2384"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "ValidateRDMDiskFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2390"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2392"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2396"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2398"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2405"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2405"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2412"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2414"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2415"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2422"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2422"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2431"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2433"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2434"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2435"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2435"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2440"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2443"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2443"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2445"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2458"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2459"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2467"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2468"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2473"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2477"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2487"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2490"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2501"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2513"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2514"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2518"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2518"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2519"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2519"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2524"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2532"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2536"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2539"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2540"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2541"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2541"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2545"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2546"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2548"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2551"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2552"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2552"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2556"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2557"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2559"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "PollUntilContextTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2575"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2581"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2586"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2594"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2598"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2600"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2605"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2606"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2606"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2610"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2623"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2624"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2643"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2646"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2657"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/dee63ba2880d879160240f73ec30f972aee0495c01ba894f15f0dbccfe03299a.json b/graphify-out/cache/ast/dee63ba2880d879160240f73ec30f972aee0495c01ba894f15f0dbccfe03299a.json new file mode 100644 index 000000000..74e7be18b --- /dev/null +++ b/graphify-out/cache/ast/dee63ba2880d879160240f73ec30f972aee0495c01ba894f15f0dbccfe03299a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_readme_md", "label": "README.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L1"}, {"id": "vjailbreak_readme_vjailbreak", "label": "vJailbreak", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L3"}, {"id": "vjailbreak_readme_overview", "label": "Overview", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L19"}, {"id": "vjailbreak_readme_key_features", "label": "Key Features", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L23"}, {"id": "vjailbreak_readme_documentation", "label": "Documentation", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L43"}, {"id": "vjailbreak_readme_demonstration", "label": "Demonstration", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L49"}, {"id": "vjailbreak_readme_video_overview", "label": "Video Overview", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L51"}, {"id": "vjailbreak_readme_screenshots", "label": "Screenshots", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L57"}, {"id": "vjailbreak_readme_migration_setup", "label": "Migration Setup", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L59"}, {"id": "vjailbreak_readme_migration_form_step_1", "label": "Migration Form (Step 1)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L64"}, {"id": "vjailbreak_readme_migration_form_step_2", "label": "Migration Form (Step 2)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L67"}, {"id": "vjailbreak_readme_migration_progress", "label": "Migration Progress", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L71"}, {"id": "vjailbreak_readme_progress_view_stage_1", "label": "Progress View (Stage 1)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L76"}, {"id": "vjailbreak_readme_progress_view_stage_2", "label": "Progress View (Stage 2)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L79"}, {"id": "vjailbreak_readme_agent_scaling", "label": "Agent Scaling", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L83"}, {"id": "vjailbreak_readme_scaling_up", "label": "Scaling Up", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L88"}, {"id": "vjailbreak_readme_scaling_down", "label": "Scaling Down", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L92"}, {"id": "vjailbreak_readme_license", "label": "License", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L96"}, {"id": "vjailbreak_readme_installation", "label": "Installation", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L108"}, {"id": "vjailbreak_readme_prerequisites", "label": "Prerequisites", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L110"}, {"id": "vjailbreak_readme_quick_start", "label": "Quick Start", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L133"}, {"id": "vjailbreak_readme_codeblock_1", "label": "code:bash (# Install ORAS (see https://oras.land/docs/installation))", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L136"}, {"id": "vjailbreak_readme_codeblock_2", "label": "code:bash (# Upload the image to your OpenStack environment)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L145"}, {"id": "vjailbreak_readme_codeblock_3", "label": "code:bash (# Example /etc/hosts entry)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L166"}, {"id": "vjailbreak_readme_codeblock_4", "label": "code:bash (# After modifying resolv.conf)", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L177"}, {"id": "vjailbreak_readme_usage", "label": "Usage", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L187"}, {"id": "vjailbreak_readme_community_and_support", "label": "Community and Support", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L191"}, {"id": "vjailbreak_readme_acknowledgements", "label": "Acknowledgements", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L198"}, {"id": "vjailbreak_readme_contributing", "label": "Contributing", "file_type": "document", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L209"}], "edges": [{"source": "home_flint_vjailbreak_readme_md", "target": "vjailbreak_readme_vjailbreak", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L3", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_overview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L19", "weight": 1.0}, {"source": "vjailbreak_readme_overview", "target": "vjailbreak_readme_key_features", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L23", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_documentation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L43", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_demonstration", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L49", "weight": 1.0}, {"source": "vjailbreak_readme_demonstration", "target": "vjailbreak_readme_video_overview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L51", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_screenshots", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L57", "weight": 1.0}, {"source": "vjailbreak_readme_screenshots", "target": "vjailbreak_readme_migration_setup", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L59", "weight": 1.0}, {"source": "vjailbreak_readme_migration_setup", "target": "vjailbreak_readme_migration_form_step_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L64", "weight": 1.0}, {"source": "vjailbreak_readme_migration_setup", "target": "vjailbreak_readme_migration_form_step_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L67", "weight": 1.0}, {"source": "vjailbreak_readme_screenshots", "target": "vjailbreak_readme_migration_progress", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L71", "weight": 1.0}, {"source": "vjailbreak_readme_migration_progress", "target": "vjailbreak_readme_progress_view_stage_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L76", "weight": 1.0}, {"source": "vjailbreak_readme_migration_progress", "target": "vjailbreak_readme_progress_view_stage_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L79", "weight": 1.0}, {"source": "vjailbreak_readme_screenshots", "target": "vjailbreak_readme_agent_scaling", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L83", "weight": 1.0}, {"source": "vjailbreak_readme_agent_scaling", "target": "vjailbreak_readme_scaling_up", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L88", "weight": 1.0}, {"source": "vjailbreak_readme_agent_scaling", "target": "vjailbreak_readme_scaling_down", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L92", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_license", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L96", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_installation", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L108", "weight": 1.0}, {"source": "vjailbreak_readme_installation", "target": "vjailbreak_readme_prerequisites", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L110", "weight": 1.0}, {"source": "vjailbreak_readme_installation", "target": "vjailbreak_readme_quick_start", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L133", "weight": 1.0}, {"source": "vjailbreak_readme_quick_start", "target": "vjailbreak_readme_codeblock_1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L136", "weight": 1.0}, {"source": "vjailbreak_readme_quick_start", "target": "vjailbreak_readme_codeblock_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L145", "weight": 1.0}, {"source": "vjailbreak_readme_quick_start", "target": "vjailbreak_readme_codeblock_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L166", "weight": 1.0}, {"source": "vjailbreak_readme_quick_start", "target": "vjailbreak_readme_codeblock_4", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L177", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_usage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L187", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_community_and_support", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L191", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_acknowledgements", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L198", "weight": 1.0}, {"source": "vjailbreak_readme_vjailbreak", "target": "vjailbreak_readme_contributing", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/README.md", "source_location": "L209", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/dfb1890e0a69f205f373d1678d713495dfeb88a3e4f65f687cad20cefef47b13.json b/graphify-out/cache/ast/dfb1890e0a69f205f373d1678d713495dfeb88a3e4f65f687cad20cefef47b13.json new file mode 100644 index 000000000..d65af825a --- /dev/null +++ b/graphify-out/cache/ast/dfb1890e0a69f205f373d1678d713495dfeb88a3e4f65f687cad20cefef47b13.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L52"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L120"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L145"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L159"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L260"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L304"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L354"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L374"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L448"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L484"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L502"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"id": "controller_openstackcreds_controller_parsefailurereason", "label": "parseFailureReason()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L603"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L636"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L671"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L691"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L735"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L759"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L786"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L823"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L52", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L120", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L145", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L159", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L260", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L304", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L354", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L374", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L448", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L484", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L502", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L535", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_parsefailurereason", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L582", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L603", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L636", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L671", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L691", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L735", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L759", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L786", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L823", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L113", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L117", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L124", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L127", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L132", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L266", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L274", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L284", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L297", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L368", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L377", "weight": 1.0}, {"source": "controller_openstackcreds_controller_setconditionsforinvalidresult", "target": "controller_openstackcreds_controller_parsefailurereason", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L552", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L604", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L608", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L617", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L625", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L629", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L728", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L782", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L79"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L79"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L84"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L87"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L91"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L97"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L105"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L136"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L138"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L142"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L148"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L153"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L167"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L172"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L175"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L178"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L230"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L232"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L253"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L256"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L264"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L273"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L277"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L280"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L287"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L290"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L298"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L306"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L310"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L311"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L312"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L315"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L319"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L325"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L330"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L334"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L336"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L340"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L341"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L342"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L345"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L356"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L358"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L360"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L363"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L367"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L381"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L382"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L387"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L387"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L390"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L394"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L401"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L403"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L405"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L405"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L435"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L436"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L440"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L441"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L444"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L452"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L453"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L458"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L461"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L464"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L467"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L472"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L486"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L488"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L492"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L509"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L509"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L512"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L515"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L518"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L520"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L521"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L536"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L537"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L538"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L539"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L540"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L554"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L566"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L566"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L568"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L573"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L574"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L587"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L589"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L591"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L593"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L595"}, {"caller_nid": "controller_openstackcreds_controller_parsefailurereason", "callee": "Is", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L597"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L638"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L640"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L640"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L641"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L643"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L645"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L652"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L653"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L654"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L655"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L662"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L664"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L665"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L673"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L675"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L676"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L680"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L684"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L685"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L686"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L693"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L694"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L696"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L697"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L700"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L702"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L703"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L712"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L713"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L717"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L721"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L723"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L724"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L742"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L744"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L744"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L745"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L753"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L754"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L760"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L766"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L771"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L776"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L777"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L781"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L788"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L792"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L795"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L797"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L802"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L804"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L808"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L810"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L812"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L814"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L816"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L818"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L824"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L825"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L826"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L827"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/e17879c4b85146a07898c126ba68a1bcf52a420d3cd95246506f1620cd88acea.json b/graphify-out/cache/ast/e17879c4b85146a07898c126ba68a1bcf52a420d3cd95246506f1620cd88acea.json new file mode 100644 index 000000000..4b29dfef1 --- /dev/null +++ b/graphify-out/cache/ast/e17879c4b85146a07898c126ba68a1bcf52a420d3cd95246506f1620cd88acea.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "label": "conditions_test.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L1"}, {"id": "utils_conditions_test_testconditiontypeconstants", "label": "TestConditionTypeConstants()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L12"}, {"id": "utils_conditions_test_testreasonconstants", "label": "TestReasonConstants()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L35"}, {"id": "utils_conditions_test_testsetcondition_addsnewentry", "label": "TestSetCondition_AddsNewEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L75"}, {"id": "utils_conditions_test_testsetcondition_updatesexistingentry", "label": "TestSetCondition_UpdatesExistingEntry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L102"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "target": "go_pkg_testing", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "target": "utils_conditions_test_testconditiontypeconstants", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L12", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "target": "utils_conditions_test_testreasonconstants", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L35", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "target": "utils_conditions_test_testsetcondition_addsnewentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L75", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_conditions_test_go", "target": "utils_conditions_test_testsetcondition_updatesexistingentry", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L102", "weight": 1.0}], "raw_calls": [{"caller_nid": "utils_conditions_test_testconditiontypeconstants", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L25"}, {"caller_nid": "utils_conditions_test_testconditiontypeconstants", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L27"}, {"caller_nid": "utils_conditions_test_testreasonconstants", "callee": "Run", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L64"}, {"caller_nid": "utils_conditions_test_testreasonconstants", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L66"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L77"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L78"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L79"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L79"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L83"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L86"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L89"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L92"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L94"}, {"caller_nid": "utils_conditions_test_testsetcondition_addsnewentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L95"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L104"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L105"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L106"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L106"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L111"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L112"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L113"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L113"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Equal", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L115"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L116"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L120"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L121"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Fatalf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L122"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L122"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L125"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Equal", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L127"}, {"caller_nid": "utils_conditions_test_testsetcondition_updatesexistingentry", "callee": "Errorf", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/conditions_test.go", "source_location": "L128"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/e1e695a415a463ec12c1967be0e0ff0c6602a48d45b1c7f1429806aee13d5660.json b/graphify-out/cache/ast/e1e695a415a463ec12c1967be0e0ff0c6602a48d45b1c7f1429806aee13d5660.json new file mode 100644 index 000000000..d96992e5d --- /dev/null +++ b/graphify-out/cache/ast/e1e695a415a463ec12c1967be0e0ff0c6602a48d45b1c7f1429806aee13d5660.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "label": "clouds_yaml.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L1"}, {"id": "utils_cloudconfig", "label": "CloudConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L41"}, {"id": "utils_clouds_yaml_parsecloudsyaml", "label": "ParseCloudsYAML()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L80"}, {"id": "utils_clouds_yaml_cloudnames", "label": "CloudNames()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L91"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L4", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L6", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_cloudconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L41", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_parsecloudsyaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L80", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_pkg_utils_clouds_yaml_go", "target": "utils_clouds_yaml_cloudnames", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/pkg/utils/clouds_yaml.go", "source_location": "L91", "weight": 1.0}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/e425c6fb6eb04f7e6ef15b91627215f4c31cc8683a3eb2949662dc5b155603aa.json b/graphify-out/cache/ast/e425c6fb6eb04f7e6ef15b91627215f4c31cc8683a3eb2949662dc5b155603aa.json new file mode 100644 index 000000000..63118eb5f --- /dev/null +++ b/graphify-out/cache/ast/e425c6fb6eb04f7e6ef15b91627215f4c31cc8683a3eb2949662dc5b155603aa.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "label": "openstackcreds_types.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L1"}, {"id": "v1alpha1_hostconfig", "label": "HostConfig", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L26"}, {"id": "v1alpha1_openstackcredsinfo", "label": "OpenStackCredsInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L39"}, {"id": "v1alpha1_securitygroupinfo", "label": "SecurityGroupInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L59"}, {"id": "v1alpha1_servergroupinfo", "label": "ServerGroupInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L66"}, {"id": "v1alpha1_pcdnetworkinfo", "label": "PCDNetworkInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L74"}, {"id": "v1alpha1_openstackinfo", "label": "OpenstackInfo", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L80"}, {"id": "v1alpha1_openstackcredsspec", "label": "OpenstackCredsSpec", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L90"}, {"id": "v1alpha1_openstackcredsstatus", "label": "OpenstackCredsStatus", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L134"}, {"id": "v1alpha1_openstackcreds", "label": "OpenstackCreds", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L168"}, {"id": "v1alpha1_openstackcredslist", "label": "OpenstackCredsList", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L179"}, {"id": "v1alpha1_openstackcredsspec_deepcopyinto", "label": ".DeepCopyInto()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L187"}, {"id": "v1alpha1_openstackcreds_types_init", "label": "init()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L204"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_hostconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L26", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L39", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_securitygroupinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L59", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_servergroupinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L66", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_pcdnetworkinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L74", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L80", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsspec", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L90", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredsstatus", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L134", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L168", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcredslist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L179", "weight": 1.0}, {"source": "v1alpha1_openstackcredsspec", "target": "v1alpha1_openstackcredsspec_deepcopyinto", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L187", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_api_v1alpha1_openstackcreds_types_go", "target": "v1alpha1_openstackcreds_types_init", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L204", "weight": 1.0}], "raw_calls": [{"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L192"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L192"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "copy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L193"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L197"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L197"}, {"caller_nid": "v1alpha1_openstackcredsspec_deepcopyinto", "callee": "DeepCopyInto", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L199"}, {"caller_nid": "v1alpha1_openstackcreds_types_init", "callee": "Register", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/api/v1alpha1/openstackcreds_types.go", "source_location": "L205"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/ed0421b8a35fff59b49b85c033eb4df25109ed7442e7f4432095ca7db7867263.json b/graphify-out/cache/ast/ed0421b8a35fff59b49b85c033eb4df25109ed7442e7f4432095ca7db7867263.json new file mode 100644 index 000000000..bad6e5df3 --- /dev/null +++ b/graphify-out/cache/ast/ed0421b8a35fff59b49b85c033eb4df25109ed7442e7f4432095ca7db7867263.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "label": "migrationplan_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1"}, {"id": "controller_migrationplanreconciler", "label": "MigrationPlanReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77"}, {"id": "controller_migrationplanreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106"}, {"id": "controller_migrationplanreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161"}, {"id": "controller_migrationplanreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177"}, {"id": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "label": ".getMigrationTemplateAndCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197"}, {"id": "controller_migrationplanreconciler_reconcilepostmigration", "label": ".reconcilePostMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228"}, {"id": "controller_migrationplanreconciler_renamevm", "label": ".renameVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302"}, {"id": "controller_migrationplanreconciler_movevmtofolder", "label": ".moveVMToFolder()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334"}, {"id": "controller_migrationplan_controller_createvcenterclientanddc", "label": "createVCenterClientAndDC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373"}, {"id": "controller_migrationplan_controller_extractvcentercredentials", "label": "extractVCenterCredentials()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403"}, {"id": "controller_migrationplan_controller_getvmwaremachineforvm", "label": "GetVMwareMachineForVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426"}, {"id": "controller_migrationplanreconciler_reconcilemigrationplanjob", "label": ".ReconcileMigrationPlanJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471"}, {"id": "controller_migrationplanreconciler_checkandhandlepausedplan", "label": ".checkAndHandlePausedPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765"}, {"id": "controller_migrationplanreconciler_processmigrationphases", "label": ".processMigrationPhases()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778"}, {"id": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "label": ".handleRDMDiskMigrationError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843"}, {"id": "controller_migrationplanreconciler_updatemigrationplanstatus", "label": ".UpdateMigrationPlanStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900"}, {"id": "controller_migrationplanreconciler_createmigration", "label": ".CreateMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932"}, {"id": "controller_migrationplan_controller_buildmicroversionenvvars", "label": "buildMicroversionEnvVars()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1047"}, {"id": "controller_migrationplanreconciler_createjob", "label": ".CreateJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1074"}, {"id": "controller_migrationplanreconciler_createfirstbootconfigmap", "label": ".CreateFirstbootConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1336"}, {"id": "controller_migrationplanreconciler_createmigrationconfigmap", "label": ".CreateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1371"}, {"id": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "label": ".buildNewMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1400"}, {"id": "controller_migrationplan_controller_resolvevirtiodriverurl", "label": "resolveVirtioDriverURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1470"}, {"id": "controller_migrationplanreconciler_processadvancedoptions", "label": ".processAdvancedOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1477"}, {"id": "controller_migrationplan_controller_computesourcevmkey", "label": "computeSourceVMKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516"}, {"id": "controller_migrationplan_controller_vmkeydisplayname", "label": "vmKeyDisplayName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1534"}, {"id": "controller_migrationplanreconciler_buildbaseconfigmapdata", "label": ".buildBaseConfigMapData()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1548"}, {"id": "controller_migrationplanreconciler_setmigrationspecificfields", "label": ".setMigrationSpecificFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1585"}, {"id": "controller_migrationplanreconciler_determineandsettargetflavor", "label": ".determineAndSetTargetFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1591"}, {"id": "controller_migrationplanreconciler_setosfamilyandstoragefields", "label": ".setOSFamilyAndStorageFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1636"}, {"id": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "label": ".setImageMetadataFromProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1669"}, {"id": "controller_migrationplanreconciler_resolveimageprofiles", "label": ".resolveImageProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1724"}, {"id": "controller_migrationplanreconciler_updatemigrationconfigmap", "label": ".updateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1769"}, {"id": "controller_migrationplanreconciler_createresource", "label": ".createResource()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1791"}, {"id": "controller_migrationplanreconciler_checkstatussuccess", "label": ".checkStatusSuccess()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1804"}, {"id": "controller_migrationplanreconciler_reconcilemapping", "label": ".reconcileMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1837"}, {"id": "controller_migrationplan_controller_getdatastoresforvolumemapping", "label": "getDatastoresForVolumeMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1873"}, {"id": "controller_migrationplanreconciler_reconcilenetwork", "label": ".reconcileNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1888"}, {"id": "controller_migrationplanreconciler_reconcilestorage", "label": ".reconcileStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1961"}, {"id": "controller_migrationplanreconciler_triggermigration", "label": ".TriggerMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2007"}, {"id": "controller_migrationplanreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2150"}, {"id": "controller_migrationplanreconciler_validatevddkpresence", "label": ".validateVDDKPresence()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2186"}, {"id": "controller_migrationplan_controller_mergelabels", "label": "MergeLabels()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2282"}, {"id": "controller_migrationplanreconciler_migraterdmdisks", "label": ".migrateRDMdisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2294"}, {"id": "controller_migrationplanreconciler_validatevmos", "label": ".validateVMOS()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2437"}, {"id": "controller_migrationplanreconciler_validatemigrationplanvms", "label": ".validateMigrationPlanVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2458"}, {"id": "controller_migrationplanreconciler_updatemigrationphasewithretry", "label": ".updateMigrationPhaseWithRetry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2519"}, {"id": "controller_migrationplanreconciler_isvmsucceededinplan", "label": ".isVMSucceededInPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2573"}, {"id": "controller_migrationplanreconciler_markmigrationvalidationfailed", "label": ".markMigrationValidationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2589"}, {"id": "controller_migrationplanreconciler_markmigrationfailed", "label": ".markMigrationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2603"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os_user", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strconv", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_go_logr_logr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_verrors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_vpwned_sdk_storage_netapp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vcenter", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_batch_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_resource", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_util_wait", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_utils_ptr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L55", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L56", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L57", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L58", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L59", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L60", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_event", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L61", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L62", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L63", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L65", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L66", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L67", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplanreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_renamevm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_buildmicroversionenvvars", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1047", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1074", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1336", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1371", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1400", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1470", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1477", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1534", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1548", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1585", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1591", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1636", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1669", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1724", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1769", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createresource", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1791", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1804", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1837", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1873", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1888", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1961", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_triggermigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2007", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2150", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2186", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_mergelabels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2282", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2294", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevmos", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2437", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2458", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2519", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2573", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2589", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2603", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L155", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilenormal", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L169", "weight": 1.0}, {"source": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L213", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L253", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L258", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L267", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_renamevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L288", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L294", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L557", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L594", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L606", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L618", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L659", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L711", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L713", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_triggermigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L722", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L742", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L795", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L813", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L855", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L881", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplan_controller_mergelabels", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L990", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L991", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplan_controller_buildmicroversionenvvars", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1136", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1327", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createfirstbootconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1361", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1388", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1393", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1412", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1414", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1419", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1424", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1425", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1441", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1445", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1461", "weight": 1.0}, {"source": "controller_migrationplan_controller_computesourcevmkey", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1524", "weight": 1.0}, {"source": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1687", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1854", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1861", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1862", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2035", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2080", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2097", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2102", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2106", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2111", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2120", "weight": 1.0}, {"source": "controller_migrationplanreconciler_migraterdmdisks", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2321", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2474", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_validatevmos", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2479", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2510", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationvalidationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2597", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2611", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L107"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L110"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L111"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L115"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "ValidateMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L118"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L120"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L125"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L127"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L128"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L132"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L133"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "NewMigrationPlanScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L137"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L143"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L148"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L154"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L167"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L171"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L189"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L190"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L191"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L201"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L204"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L208"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L209"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L214"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L218"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L222"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L232"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L235"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L241"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L245"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L255"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L260"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L264"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L269"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L275"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L279"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L280"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L282"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L289"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L295"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L308"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L312"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L314"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L315"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L317"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L320"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "RenameVM", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L321"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L324"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L327"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L330"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L340"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L344"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L348"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L349"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMWithDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L350"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L351"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L353"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L356"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L359"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "MovetoFolder", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L361"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L363"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L366"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L367"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L369"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L377"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L378"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "VCenterClientBuilder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L380"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L382"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L383"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L385"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L388"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L392"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L393"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L395"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L396"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L398"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L406"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L411"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L416"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L419"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L420"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L421"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L428"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L430"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L435"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L440"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L441"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L443"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L448"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L454"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L458"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L461"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L463"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L476"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L478"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L480"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L484"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L492"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L495"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L496"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L497"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L501"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L528"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L532"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L534"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L536"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L537"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L548"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L553"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L559"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L563"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L565"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L567"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L570"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L572"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L577"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L586"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L592"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L598"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L608"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L614"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L622"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L635"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L641"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L647"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L660"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L666"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L674"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L675"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L679"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L680"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L684"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L685"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L687"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L688"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L699"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L725"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L728"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L734"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L737"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L738"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L739"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L758"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "IsMigrationPlanPaused", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L766"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L771"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L772"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L789"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L794"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L796"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L801"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L805"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L815"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L816"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L819"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L821"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L824"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L825"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L828"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L832"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L846"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L849"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L850"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L856"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L867"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L870"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L871"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L873"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L886"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L887"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L888"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L892"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L893"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L894"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L903"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L906"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L936"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L938"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L940"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L942"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L944"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L951"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L952"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L954"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L956"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L962"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L965"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "SanitizeLabelValue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L970"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L987"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L993"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L999"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1002"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1004"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1012"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1015"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1020"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1022"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1026"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1033"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1035"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1049"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1053"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1055"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1058"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1060"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "MicroversionsToEnvVars", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1062"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1063"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1066"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1066"}, {"caller_nid": "controller_migrationplan_controller_buildmicroversionenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1068"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1086"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1088"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1090"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1092"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetJobNameForVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1094"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1096"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1118"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1123"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1138"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1139"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1141"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1146"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1148"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1152"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1153"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1154"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1154"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1183"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1190"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1222"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1230"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1263"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1264"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1265"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1268"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1269"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1270"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1281"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1290"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1309"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1318"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1328"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1328"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1329"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1329"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1339"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1341"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1343"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1345"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetFirstbootConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1347"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1349"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1350"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1351"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1351"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1363"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1363"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1364"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1379"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1381"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetMigrationConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1383"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1386"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1387"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1416"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1427"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1429"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1430"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1432"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1435"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1463"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1463"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1464"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1485"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1489"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1490"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1491"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1496"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1497"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1498"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1503"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1504"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1505"}, {"caller_nid": "controller_migrationplan_controller_computesourcevmkey", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1518"}, {"caller_nid": "controller_migrationplan_controller_vmkeydisplayname", "callee": "LastIndex", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1535"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1562"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1563"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1564"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1565"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1566"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1567"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1569"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1572"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1574"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1575"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1577"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1578"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1579"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1580"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1581"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1602"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1604"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1611"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "FilterFlavorsByAvailabilityZone", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1612"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1615"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1619"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1621"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1627"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1629"}, {"caller_nid": "controller_migrationplanreconciler_setosfamilyandstoragefields", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1643"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1677"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1682"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1684"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1689"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1691"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1696"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1697"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1699"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1703"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1710"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1714"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1716"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1718"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1732"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1737"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1738"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1739"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1742"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1746"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1754"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1773"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1775"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1776"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1778"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1780"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1782"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1784"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1785"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1785"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1786"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1792"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1794"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1796"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1798"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1810"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1812"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1818"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1820"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1821"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1826"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "IsStatusConditionTrue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1831"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1845"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1848"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1852"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1856"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1864"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1874"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1875"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1875"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1877"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1879"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1897"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1903"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1905"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1912"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1914"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1924"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1930"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1935"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1942"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1945"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1946"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1948"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1950"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1952"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1952"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1954"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1969"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1971"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1977"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1982"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1988"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1991"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1992"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1994"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1996"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1998"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1998"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2000"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2016"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2025"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetOpenStackClients", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2027"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2029"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "FindHotplugBaseFlavor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2032"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2034"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2036"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2040"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2044"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2047"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2055"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2057"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2059"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2062"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "MergeFrom", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2071"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2071"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Patch", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2073"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2074"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2076"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2082"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2088"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2089"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2093"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2096"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2098"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2104"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2108"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2132"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2132"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2138"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2139"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2151"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2151"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Owns", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2151"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2151"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2151"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2153"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Current", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2191"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "ReadDir", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2199"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2201"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2209"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2215"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2218"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2221"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2221"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2222"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2225"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2228"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2229"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2234"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2239"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2242"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2243"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2243"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2244"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2248"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2255"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2261"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2262"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2264"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2265"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2271"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2271"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2274"}, {"caller_nid": "controller_migrationplan_controller_mergelabels", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2283"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2296"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2298"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2300"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2301"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2306"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2307"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2311"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2315"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2322"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2322"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2322"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2323"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2328"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2328"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2331"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2331"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2335"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2335"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2335"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2336"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "ValidateRDMDiskFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2342"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2344"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2348"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2350"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2357"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2357"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2364"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2366"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2367"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2374"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2374"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2383"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2385"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2386"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2387"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2387"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2392"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2395"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2395"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2397"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2410"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2411"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2419"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2420"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2425"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2429"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2439"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2442"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2453"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2465"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2466"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2470"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2470"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2471"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2471"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2476"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2484"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2488"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2491"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2492"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2493"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2493"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2497"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2498"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2500"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2503"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2504"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2504"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2508"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2509"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2511"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "PollUntilContextTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2527"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2533"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2538"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2546"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2550"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2552"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2557"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2558"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2558"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2562"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2575"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2576"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2595"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2598"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2609"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/ed0c2efd9673d21432d24502011daa8bf3fd7e2f14c26f38000f8d0016a95f91.json b/graphify-out/cache/ast/ed0c2efd9673d21432d24502011daa8bf3fd7e2f14c26f38000f8d0016a95f91.json new file mode 100644 index 000000000..26ae1172e --- /dev/null +++ b/graphify-out/cache/ast/ed0c2efd9673d21432d24502011daa8bf3fd7e2f14c26f38000f8d0016a95f91.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "label": "openstackcreds_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L1"}, {"id": "controller_openstackcredsreconciler", "label": "OpenstackCredsReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51"}, {"id": "controller_openstackcredsreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77"}, {"id": "controller_openstackcredsreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119"}, {"id": "controller_openstackcredsreconciler_ensurefinalizer", "label": ".ensureFinalizer()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144"}, {"id": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "label": ".createSecretFromSpecIfNeeded()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158"}, {"id": "controller_openstackcredsreconciler_applyvalidationresult", "label": ".applyValidationResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259"}, {"id": "controller_openstackcredsreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L303"}, {"id": "controller_openstackcredsreconciler_discoverstoragearrays", "label": ".discoverStorageArrays()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L353"}, {"id": "controller_openstackcredsreconciler_createarraycreds", "label": ".createArrayCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L373"}, {"id": "controller_openstackcreds_controller_generatearraycredsname", "label": "generateArrayCredsName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L447"}, {"id": "controller_openstackcredsreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L483"}, {"id": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "label": ".mapSecretToOpenstackCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L501"}, {"id": "controller_openstackcreds_controller_setconditionsforvalidresult", "label": "setConditionsForValidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L531"}, {"id": "controller_openstackcreds_controller_setconditionsforinvalidresult", "label": "setConditionsForInvalidResult()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L563"}, {"id": "controller_openstackcreds_controller_handlevalidatedcreds", "label": "handleValidatedCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L569"}, {"id": "controller_openstackcreds_controller_setupmasternode", "label": "setupMasterNode()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L602"}, {"id": "controller_openstackcreds_controller_createdummypcdcluster", "label": "createDummyPCDCluster()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L616"}, {"id": "controller_openstackcreds_controller_fetchandupdateflavors", "label": "fetchAndUpdateFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L626"}, {"id": "controller_openstackcreds_controller_syncprojectname", "label": "syncProjectName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L637"}, {"id": "controller_openstackcreds_controller_updateopenstackinfo", "label": "updateOpenstackInfo()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L657"}, {"id": "controller_openstackcreds_controller_populatevmwaremachineflavors", "label": "populateVMwareMachineFlavors()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L674"}, {"id": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "label": "updateVMwareMachineWithFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701"}, {"id": "controller_openstackcreds_controller_handlepcdsync", "label": "handlePCDSync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L725"}, {"id": "controller_openstackcreds_controller_runpcdsyncasync", "label": "runPCDSyncAsync()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L752"}, {"id": "controller_openstackcreds_controller_isretryableupdateerror", "label": "isRetryableUpdateError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L789"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_validation_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_handler", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_reconcile", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcredsreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L51", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L119", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L144", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L259", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L303", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L353", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L447", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L483", "weight": 1.0}, {"source": "controller_openstackcredsreconciler", "target": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L501", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L531", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L563", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L569", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L602", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L616", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L626", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L637", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L657", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L674", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L701", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L725", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L752", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_openstackcreds_controller_go", "target": "controller_openstackcreds_controller_isretryableupdateerror", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L789", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L112", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcile", "target": "controller_openstackcredsreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L116", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_ensurefinalizer", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L123", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L126", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_reconcilenormal", "target": "controller_openstackcredsreconciler_applyvalidationresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L131", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_handlevalidatedcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L265", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforinvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcreds_controller_setconditionsforvalidresult", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L283", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_applyvalidationresult", "target": "controller_openstackcredsreconciler_discoverstoragearrays", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L296", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_discoverstoragearrays", "target": "controller_openstackcredsreconciler_createarraycreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L367", "weight": 1.0}, {"source": "controller_openstackcredsreconciler_createarraycreds", "target": "controller_openstackcreds_controller_generatearraycredsname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L376", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_setupmasternode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L570", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_createdummypcdcluster", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L574", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_fetchandupdateflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L578", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_syncprojectname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L583", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_updateopenstackinfo", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L587", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_populatevmwaremachineflavors", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L591", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlevalidatedcreds", "target": "controller_openstackcreds_controller_handlepcdsync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L595", "weight": 1.0}, {"source": "controller_openstackcreds_controller_populatevmwaremachineflavors", "target": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L694", "weight": 1.0}, {"source": "controller_openstackcreds_controller_handlepcdsync", "target": "controller_openstackcreds_controller_runpcdsyncasync", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L748", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L78"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L81"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L82"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L83"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L86"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "V", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L89"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "NewOpenstackCredsScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L90"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L96"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L102"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Close", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L103"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L104"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L110"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L111"}, {"caller_nid": "controller_openstackcredsreconciler_reconcile", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L115"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L122"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Validate", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L130"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L135"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L137"}, {"caller_nid": "controller_openstackcredsreconciler_reconcilenormal", "callee": "Duration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L141"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "ContainsFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L147"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L150"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L151"}, {"caller_nid": "controller_openstackcredsreconciler_ensurefinalizer", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L152"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L165"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L166"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L171"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L174"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L177"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L226"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L227"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L228"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L229"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L231"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L250"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L251"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L252"}, {"caller_nid": "controller_openstackcredsreconciler_createsecretfromspecifneeded", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L255"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L263"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L272"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L274"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L275"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L276"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L279"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L284"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L285"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L286"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L289"}, {"caller_nid": "controller_openstackcredsreconciler_applyvalidationresult", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L297"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L305"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L308"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "DeleteEntryForNoPCDCluster", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L309"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L310"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L311"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L314"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L317"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L317"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L318"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L322"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L323"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L324"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L329"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Delete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L331"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L331"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L332"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L333"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L335"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L338"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L339"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L340"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L341"}, {"caller_nid": "controller_openstackcredsreconciler_reconciledelete", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L344"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L355"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "GetBackendPools", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L357"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L359"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L362"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L362"}, {"caller_nid": "controller_openstackcredsreconciler_discoverstoragearrays", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L366"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L380"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L381"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L386"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L386"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L389"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L392"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L393"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L400"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "GetArrayVendor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L402"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L404"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L404"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L434"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L435"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L439"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L440"}, {"caller_nid": "controller_openstackcredsreconciler_createarraycreds", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L443"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L450"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L451"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "ReplaceAll", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L452"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "WriteRune", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L457"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "String", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L460"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L463"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L463"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "sanitize", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L463"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L466"}, {"caller_nid": "controller_openstackcreds_controller_generatearraycredsname", "callee": "TrimRight", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L471"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "Watches", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L485"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L487"}, {"caller_nid": "controller_openstackcredsreconciler_setupwithmanager", "callee": "EnqueueRequestsFromMapFunc", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L491"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L507"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L507"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L507"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L508"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L511"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L514"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L517"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L519"}, {"caller_nid": "controller_openstackcredsreconciler_mapsecrettoopenstackcreds", "callee": "GetNamespace", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L520"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L532"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L533"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L536"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L537"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "EvaluateAppCredExpiration", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L541"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L541"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L544"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L545"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L547"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L548"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L550"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L550"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L550"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L551"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L553"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L554"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "MapKeystoneError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L564"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L565"}, {"caller_nid": "controller_openstackcreds_controller_setconditionsforinvalidresult", "callee": "SetCondition", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L566"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "UpdateMasterNodeImageID", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L604"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L606"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L606"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L607"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L609"}, {"caller_nid": "controller_openstackcreds_controller_setupmasternode", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L611"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L618"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "CreateDummyPCDClusterForStandAlonePCDHosts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L619"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "IsAlreadyExists", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L620"}, {"caller_nid": "controller_openstackcreds_controller_createdummypcdcluster", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L621"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L628"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L630"}, {"caller_nid": "controller_openstackcreds_controller_fetchandupdateflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L631"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "GetOpenstackCredentialsFromSecret", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L639"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L641"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L642"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L646"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L650"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L651"}, {"caller_nid": "controller_openstackcreds_controller_syncprojectname", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L652"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L659"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "GetOpenstackInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L660"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L662"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L663"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L666"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L667"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L667"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L668"}, {"caller_nid": "controller_openstackcreds_controller_updateopenstackinfo", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L669"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L676"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L678"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L679"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L683"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L687"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L689"}, {"caller_nid": "controller_openstackcreds_controller_populatevmwaremachineflavors", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L690"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L708"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L709"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L709"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L710"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L711"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "CreateOrUpdateLabel", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L719"}, {"caller_nid": "controller_openstackcreds_controller_updatevmwaremachinewithflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L720"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L726"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L732"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L737"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L742"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L743"}, {"caller_nid": "controller_openstackcreds_controller_handlepcdsync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L747"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Background", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L754"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "SyncPCDInfo", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L758"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L761"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L763"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "OnError", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L768"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L770"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L774"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L776"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L778"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L780"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L782"}, {"caller_nid": "controller_openstackcreds_controller_runpcdsyncasync", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L784"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L790"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsServerTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L791"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L792"}, {"caller_nid": "controller_openstackcreds_controller_isretryableupdateerror", "callee": "IsTooManyRequests", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/openstackcreds_controller.go", "source_location": "L793"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/f4c6769f2b11f8854a5412d8d15a308c101462cc029cb9d18d92ed53b29f526a.json b/graphify-out/cache/ast/f4c6769f2b11f8854a5412d8d15a308c101462cc029cb9d18d92ed53b29f526a.json new file mode 100644 index 000000000..7c59eef25 --- /dev/null +++ b/graphify-out/cache/ast/f4c6769f2b11f8854a5412d8d15a308c101462cc029cb9d18d92ed53b29f526a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_spec_md", "label": "spec.md", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "label": "Feature Specification: clouds.yaml credentials for OpenstackCreds", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L1"}, {"id": "003_clouds_yaml_credentials_spec_clarifications", "label": "Clarifications", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L8"}, {"id": "003_clouds_yaml_credentials_spec_session_2026_05_18", "label": "Session 2026-05-18", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L10"}, {"id": "003_clouds_yaml_credentials_spec_user_scenarios_testing_mandatory", "label": "User Scenarios & Testing *(mandatory)*", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L17"}, {"id": "003_clouds_yaml_credentials_spec_user_story_1_use_clouds_yaml_as_the_credential_source_priority_p1", "label": "User Story 1 \u2014 Use clouds.yaml as the credential source (Priority: P1)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L19"}, {"id": "003_clouds_yaml_credentials_spec_user_story_2_authenticate_via_openstack_application_credentials_priority_p2", "label": "User Story 2 \u2014 Authenticate via OpenStack Application Credentials (Priority: P2)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L37"}, {"id": "003_clouds_yaml_credentials_spec_user_story_3_enter_clouds_yaml_through_the_web_ui_priority_p3", "label": "User Story 3 \u2014 Enter clouds.yaml through the web UI (Priority: P3)", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L54"}, {"id": "003_clouds_yaml_credentials_spec_edge_cases", "label": "Edge Cases", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L71"}, {"id": "003_clouds_yaml_credentials_spec_requirements_mandatory", "label": "Requirements *(mandatory)*", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L83"}, {"id": "003_clouds_yaml_credentials_spec_functional_requirements", "label": "Functional Requirements", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L85"}, {"id": "003_clouds_yaml_credentials_spec_key_entities", "label": "Key Entities", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L106"}, {"id": "003_clouds_yaml_credentials_spec_success_criteria_mandatory", "label": "Success Criteria *(mandatory)*", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L114"}, {"id": "003_clouds_yaml_credentials_spec_measurable_outcomes", "label": "Measurable Outcomes", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L116"}, {"id": "003_clouds_yaml_credentials_spec_assumptions", "label": "Assumptions", "file_type": "document", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L126"}], "edges": [{"source": "home_flint_vjailbreak_specs_003_clouds_yaml_credentials_spec_md", "target": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L1", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_spec_clarifications", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L8", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_clarifications", "target": "003_clouds_yaml_credentials_spec_session_2026_05_18", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L10", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_spec_user_scenarios_testing_mandatory", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L17", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_user_scenarios_testing_mandatory", "target": "003_clouds_yaml_credentials_spec_user_story_1_use_clouds_yaml_as_the_credential_source_priority_p1", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L19", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_user_scenarios_testing_mandatory", "target": "003_clouds_yaml_credentials_spec_user_story_2_authenticate_via_openstack_application_credentials_priority_p2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L37", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_user_scenarios_testing_mandatory", "target": "003_clouds_yaml_credentials_spec_user_story_3_enter_clouds_yaml_through_the_web_ui_priority_p3", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L54", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_user_scenarios_testing_mandatory", "target": "003_clouds_yaml_credentials_spec_edge_cases", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L71", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_spec_requirements_mandatory", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L83", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_requirements_mandatory", "target": "003_clouds_yaml_credentials_spec_functional_requirements", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L85", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_requirements_mandatory", "target": "003_clouds_yaml_credentials_spec_key_entities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L106", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_spec_success_criteria_mandatory", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L114", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_success_criteria_mandatory", "target": "003_clouds_yaml_credentials_spec_measurable_outcomes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L116", "weight": 1.0}, {"source": "003_clouds_yaml_credentials_spec_feature_specification_clouds_yaml_credentials_for_openstackcreds", "target": "003_clouds_yaml_credentials_spec_assumptions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/specs/003-clouds-yaml-credentials/spec.md", "source_location": "L126", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/f99419d54762e359e8d7705a2a93f452a2a57fb8a4619b2158d5855295940402.json b/graphify-out/cache/ast/f99419d54762e359e8d7705a2a93f452a2a57fb8a4619b2158d5855295940402.json new file mode 100644 index 000000000..6827e20dc --- /dev/null +++ b/graphify-out/cache/ast/f99419d54762e359e8d7705a2a93f452a2a57fb8a4619b2158d5855295940402.json @@ -0,0 +1 @@ +{"nodes": [{"id": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "label": "migrationplan_controller.go", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1"}, {"id": "controller_migrationplanreconciler", "label": "MigrationPlanReconciler", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77"}, {"id": "controller_migrationplanreconciler_reconcile", "label": ".Reconcile()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106"}, {"id": "controller_migrationplanreconciler_reconcilenormal", "label": ".reconcileNormal()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161"}, {"id": "controller_migrationplanreconciler_reconciledelete", "label": ".reconcileDelete()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177"}, {"id": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "label": ".getMigrationTemplateAndCreds()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197"}, {"id": "controller_migrationplanreconciler_reconcilepostmigration", "label": ".reconcilePostMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228"}, {"id": "controller_migrationplanreconciler_renamevm", "label": ".renameVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302"}, {"id": "controller_migrationplanreconciler_movevmtofolder", "label": ".moveVMToFolder()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334"}, {"id": "controller_migrationplan_controller_createvcenterclientanddc", "label": "createVCenterClientAndDC()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373"}, {"id": "controller_migrationplan_controller_extractvcentercredentials", "label": "extractVCenterCredentials()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403"}, {"id": "controller_migrationplan_controller_getvmwaremachineforvm", "label": "GetVMwareMachineForVM()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426"}, {"id": "controller_migrationplanreconciler_reconcilemigrationplanjob", "label": ".ReconcileMigrationPlanJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471"}, {"id": "controller_migrationplanreconciler_checkandhandlepausedplan", "label": ".checkAndHandlePausedPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765"}, {"id": "controller_migrationplanreconciler_processmigrationphases", "label": ".processMigrationPhases()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778"}, {"id": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "label": ".handleRDMDiskMigrationError()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843"}, {"id": "controller_migrationplanreconciler_updatemigrationplanstatus", "label": ".UpdateMigrationPlanStatus()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900"}, {"id": "controller_migrationplanreconciler_createmigration", "label": ".CreateMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932"}, {"id": "controller_migrationplan_controller_buildcloudsyamlenvvars", "label": "buildCloudsYAMLEnvVars()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054"}, {"id": "controller_migrationplanreconciler_createjob", "label": ".CreateJob()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1111"}, {"id": "controller_migrationplanreconciler_createfirstbootconfigmap", "label": ".CreateFirstbootConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375"}, {"id": "controller_migrationplanreconciler_createmigrationconfigmap", "label": ".CreateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410"}, {"id": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "label": ".buildNewMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439"}, {"id": "controller_migrationplan_controller_resolvevirtiodriverurl", "label": "resolveVirtioDriverURL()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1509"}, {"id": "controller_migrationplanreconciler_processadvancedoptions", "label": ".processAdvancedOptions()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516"}, {"id": "controller_migrationplan_controller_computesourcevmkey", "label": "computeSourceVMKey()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1555"}, {"id": "controller_migrationplan_controller_vmkeydisplayname", "label": "vmKeyDisplayName()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1573"}, {"id": "controller_migrationplanreconciler_buildbaseconfigmapdata", "label": ".buildBaseConfigMapData()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1587"}, {"id": "controller_migrationplanreconciler_setmigrationspecificfields", "label": ".setMigrationSpecificFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1624"}, {"id": "controller_migrationplanreconciler_determineandsettargetflavor", "label": ".determineAndSetTargetFlavor()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1630"}, {"id": "controller_migrationplanreconciler_setosfamilyandstoragefields", "label": ".setOSFamilyAndStorageFields()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1675"}, {"id": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "label": ".setImageMetadataFromProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1708"}, {"id": "controller_migrationplanreconciler_resolveimageprofiles", "label": ".resolveImageProfiles()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1763"}, {"id": "controller_migrationplanreconciler_updatemigrationconfigmap", "label": ".updateMigrationConfigMap()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1808"}, {"id": "controller_migrationplanreconciler_createresource", "label": ".createResource()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830"}, {"id": "controller_migrationplanreconciler_checkstatussuccess", "label": ".checkStatusSuccess()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843"}, {"id": "controller_migrationplanreconciler_reconcilemapping", "label": ".reconcileMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1876"}, {"id": "controller_migrationplan_controller_getdatastoresforvolumemapping", "label": "getDatastoresForVolumeMapping()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1912"}, {"id": "controller_migrationplanreconciler_reconcilenetwork", "label": ".reconcileNetwork()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1927"}, {"id": "controller_migrationplanreconciler_reconcilestorage", "label": ".reconcileStorage()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2000"}, {"id": "controller_migrationplanreconciler_triggermigration", "label": ".TriggerMigration()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2046"}, {"id": "controller_migrationplanreconciler_setupwithmanager", "label": ".SetupWithManager()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2189"}, {"id": "controller_migrationplanreconciler_validatevddkpresence", "label": ".validateVDDKPresence()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2225"}, {"id": "controller_migrationplan_controller_mergelabels", "label": "MergeLabels()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2321"}, {"id": "controller_migrationplanreconciler_migraterdmdisks", "label": ".migrateRDMdisks()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2333"}, {"id": "controller_migrationplanreconciler_validatevmos", "label": ".validateVMOS()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2476"}, {"id": "controller_migrationplanreconciler_validatemigrationplanvms", "label": ".validateMigrationPlanVMs()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2497"}, {"id": "controller_migrationplanreconciler_updatemigrationphasewithretry", "label": ".updateMigrationPhaseWithRetry()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2558"}, {"id": "controller_migrationplanreconciler_isvmsucceededinplan", "label": ".isVMSucceededInPlan()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2612"}, {"id": "controller_migrationplanreconciler_markmigrationvalidationfailed", "label": ".markMigrationValidationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2628"}, {"id": "controller_migrationplanreconciler_markmigrationfailed", "label": ".markMigrationFailed()", "file_type": "code", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2642"}], "edges": [{"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_context", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_encoding_json", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_fmt", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_os_user", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_reflect", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strconv", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_strings", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_time", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_go_logr_logr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_gophercloud_gophercloud_v2_openstack_compute_v2_flavors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_pkg_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_api_v1alpha1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_scope", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_k8s_migration_pkg_verrors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_constants", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_openstack", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_common_utils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_pkg_vpwned_sdk_storage_netapp", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_pkg_k8sutils", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_platform9_vjailbreak_v2v_helper_vcenter", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_batch_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_api_core_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_errors", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_meta", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_api_resource", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_apis_meta_v1", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_apimachinery_pkg_util_wait", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_client_go_util_retry", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_k8s_io_utils_ptr", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L55", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L56", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_builder", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L57", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_client", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L58", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L59", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_controller_controllerutil", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L60", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_event", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L61", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_log", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L62", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_sigs_k8s_io_controller_runtime_pkg_predicate", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L63", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_object", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L65", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_session", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L66", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "go_pkg_github_com_vmware_govmomi_vim25_types", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L67", "weight": 1.0, "context": "import"}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplanreconciler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L77", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcile", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L106", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L161", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L177", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L197", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L228", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_renamevm", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L302", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L334", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L373", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L403", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L426", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L471", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L765", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L778", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L900", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L932", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_buildcloudsyamlenvvars", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1054", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createjob", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1111", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1375", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1410", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1439", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1509", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1516", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1555", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1573", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1587", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1624", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1630", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1675", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1708", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1763", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1808", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_createresource", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1830", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1843", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1876", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1912", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1927", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2000", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_triggermigration", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2046", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_setupwithmanager", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2189", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2225", "weight": 1.0}, {"source": "home_flint_vjailbreak_k8s_migration_internal_controller_migrationplan_controller_go", "target": "controller_migrationplan_controller_mergelabels", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2321", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2333", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatevmos", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2476", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2497", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2558", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2612", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2628", "weight": 1.0}, {"source": "controller_migrationplanreconciler", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2642", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconciledelete", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L155", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcile", "target": "controller_migrationplanreconciler_reconcilenormal", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L158", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilenormal", "target": "controller_migrationplanreconciler_reconcilemigrationplanjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L169", "weight": 1.0}, {"source": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L213", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L253", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L258", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_extractvcentercredentials", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L267", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplan_controller_createvcenterclientanddc", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L273", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_renamevm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L288", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilepostmigration", "target": "controller_migrationplanreconciler_movevmtofolder", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L294", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L557", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_validatemigrationplanvms", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L594", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L606", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L612", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L618", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkstatussuccess", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L659", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_migraterdmdisks", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L711", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L713", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_checkandhandlepausedplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L716", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_triggermigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L722", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemigrationplanjob", "target": "controller_migrationplanreconciler_processmigrationphases", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L742", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L795", "weight": 1.0}, {"source": "controller_migrationplanreconciler_processmigrationphases", "target": "controller_migrationplanreconciler_reconcilepostmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L813", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L855", "weight": 1.0}, {"source": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "target": "controller_migrationplanreconciler_markmigrationvalidationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L881", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplan_controller_mergelabels", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L990", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigration", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L991", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplan_controller_buildcloudsyamlenvvars", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1175", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createjob", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1366", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createfirstbootconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1400", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1427", "weight": 1.0}, {"source": "controller_migrationplanreconciler_createmigrationconfigmap", "target": "controller_migrationplanreconciler_updatemigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1432", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_resolvevirtiodriverurl", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1451", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_reconcilemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1453", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_processadvancedoptions", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1458", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplan_controller_computesourcevmkey", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1463", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_buildbaseconfigmapdata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1464", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setmigrationspecificfields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1478", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_determineandsettargetflavor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1480", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setosfamilyandstoragefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1484", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1488", "weight": 1.0}, {"source": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "target": "controller_migrationplanreconciler_createresource", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1500", "weight": 1.0}, {"source": "controller_migrationplan_controller_computesourcevmkey", "target": "controller_migrationplan_controller_vmkeydisplayname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1563", "weight": 1.0}, {"source": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "target": "controller_migrationplanreconciler_resolveimageprofiles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1726", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1882", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilenetwork", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1893", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplan_controller_getdatastoresforvolumemapping", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1900", "weight": 1.0}, {"source": "controller_migrationplanreconciler_reconcilemapping", "target": "controller_migrationplanreconciler_reconcilestorage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1901", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2074", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigration", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2119", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_markmigrationfailed", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2136", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createmigrationconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2141", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createfirstbootconfigmap", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2145", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_validatevddkpresence", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2150", "weight": 1.0}, {"source": "controller_migrationplanreconciler_triggermigration", "target": "controller_migrationplanreconciler_createjob", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2159", "weight": 1.0}, {"source": "controller_migrationplanreconciler_migraterdmdisks", "target": "controller_migrationplanreconciler_isvmsucceededinplan", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2360", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplan_controller_getvmwaremachineforvm", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2513", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_validatevmos", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2518", "weight": 1.0}, {"source": "controller_migrationplanreconciler_validatemigrationplanvms", "target": "controller_migrationplanreconciler_updatemigrationplanstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2549", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationvalidationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2636", "weight": 1.0}, {"source": "controller_migrationplanreconciler_markmigrationfailed", "target": "controller_migrationplanreconciler_updatemigrationphasewithretry", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2650", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L107"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L110"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L111"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L114"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L115"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "ValidateMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L118"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L120"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L125"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L127"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L128"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L132"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L133"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "NewMigrationPlanScope", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L137"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L143"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "Close", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L148"}, {"caller_nid": "controller_migrationplanreconciler_reconcile", "callee": "IsZero", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L154"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Info", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L165"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "AddFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L167"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenormal", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L171"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L182"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L185"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "RemoveFinalizer", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L189"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L190"}, {"caller_nid": "controller_migrationplanreconciler_reconciledelete", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L191"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L201"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L204"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L208"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L209"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L214"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L218"}, {"caller_nid": "controller_migrationplanreconciler_getmigrationtemplateandcreds", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L222"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "WithName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L230"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L232"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L235"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L241"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L245"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L255"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L260"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L264"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L269"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L275"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "NewManager", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L279"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Logout", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L280"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L282"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L289"}, {"caller_nid": "controller_migrationplanreconciler_reconcilepostmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L295"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L308"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L312"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L314"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L315"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L317"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L320"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "RenameVM", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L321"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L323"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L324"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L327"}, {"caller_nid": "controller_migrationplanreconciler_renamevm", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L330"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L340"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L344"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMByMOID", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L348"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ObjectName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L349"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "GetVMWithDatacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L350"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Name", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L351"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L353"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L356"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L359"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "MovetoFolder", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L361"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "ToLower", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L362"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L363"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L366"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L367"}, {"caller_nid": "controller_migrationplanreconciler_movevmtofolder", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L369"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L377"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L378"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "VCenterClientBuilder", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L380"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L382"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L383"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L385"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L388"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L392"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Datacenter", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L393"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L395"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L396"}, {"caller_nid": "controller_migrationplan_controller_createvcenterclientanddc", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L398"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L406"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L411"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "New", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L416"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L419"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L420"}, {"caller_nid": "controller_migrationplan_controller_extractvcentercredentials", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L421"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L428"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L430"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L435"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L440"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L441"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L443"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L448"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L454"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L458"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L461"}, {"caller_nid": "controller_migrationplan_controller_getvmwaremachineforvm", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L463"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L476"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L478"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L480"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L484"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L492"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L495"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L496"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L497"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L501"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "HasPrefix", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L528"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L532"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L534"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L536"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L537"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L544"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L548"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L553"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L559"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L563"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L565"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L567"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L570"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L572"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L577"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L586"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L592"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L598"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L608"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L614"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L621"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L622"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L635"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L641"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L647"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L660"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L666"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L674"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L675"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L679"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L680"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L684"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L685"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L687"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L688"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L699"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L705"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Contains", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L724"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L725"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L728"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L734"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L737"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L738"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L739"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L753"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L756"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemigrationplanjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L758"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "IsMigrationPlanPaused", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L766"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L771"}, {"caller_nid": "controller_migrationplanreconciler_checkandhandlepausedplan", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L772"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L787"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L789"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L794"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L796"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L801"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L805"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L815"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L816"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L819"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L821"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L824"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L825"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L828"}, {"caller_nid": "controller_migrationplanreconciler_processmigrationphases", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L832"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L846"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L849"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L850"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L856"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L863"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L867"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L870"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L871"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L873"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L886"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L887"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L888"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L892"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L893"}, {"caller_nid": "controller_migrationplanreconciler_handlerdmdiskmigrationerror", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L894"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L903"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L906"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationplanstatus", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L923"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L936"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L938"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L940"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L942"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L944"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L951"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L952"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L954"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L956"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L961"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L962"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "MigrationNameFromVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L965"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L969"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "SanitizeLabelValue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L970"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L987"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L993"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L999"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1002"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1004"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1009"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1012"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1015"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1020"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1022"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1026"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1033"}, {"caller_nid": "controller_migrationplanreconciler_createmigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1035"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1056"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1060"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "SecretContainsCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1062"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "ParseCloudsYAML", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1065"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1067"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1073"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1078"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1079"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1080"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1082"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1088"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1089"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1092"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1093"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1094"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1095"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1096"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1097"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1098"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "addIfNonEmpty", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1099"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "MicroversionsToEnvVars", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1103"}, {"caller_nid": "controller_migrationplan_controller_buildcloudsyamlenvvars", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1104"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1123"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1125"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1127"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1129"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetJobNameForVMName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1131"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1133"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1155"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1160"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1177"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1178"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1180"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1185"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1187"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1191"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1192"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1193"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1193"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1222"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "To", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1229"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1261"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1269"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1302"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1303"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1304"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1307"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1308"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "MustParse", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1309"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1320"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1329"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1348"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "NewHostPathType", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1357"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1367"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1367"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1368"}, {"caller_nid": "controller_migrationplanreconciler_createjob", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1368"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetVMwareCredsNameFromMigrationPlan", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1378"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1380"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1382"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1384"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "GetFirstbootConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1386"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1388"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1389"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1390"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1390"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1402"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1402"}, {"caller_nid": "controller_migrationplanreconciler_createfirstbootconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1403"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1418"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1420"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "GetMigrationConfigMapName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1422"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1425"}, {"caller_nid": "controller_migrationplanreconciler_createmigrationconfigmap", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1426"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1449"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1455"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1466"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1468"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1469"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Itoa", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1471"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1474"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1502"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1502"}, {"caller_nid": "controller_migrationplanreconciler_buildnewmigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1503"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1524"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1528"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1529"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1530"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1535"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1536"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1537"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1542"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "VerifyPorts", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1543"}, {"caller_nid": "controller_migrationplanreconciler_processadvancedoptions", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1544"}, {"caller_nid": "controller_migrationplan_controller_computesourcevmkey", "callee": "GetVMUniqueKey", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1557"}, {"caller_nid": "controller_migrationplan_controller_vmkeydisplayname", "callee": "LastIndex", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1574"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1601"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1602"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Format", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1603"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1604"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1605"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1606"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1608"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1611"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "Join", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1613"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1614"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1616"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1617"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1618"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1619"}, {"caller_nid": "controller_migrationplanreconciler_buildbaseconfigmapdata", "callee": "FormatBool", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1620"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "ListAllFlavors", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1641"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1643"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1650"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "FilterFlavorsByAvailabilityZone", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1651"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "IsOpenstackPCD", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1654"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "GetClosestFlavour", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1658"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1660"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1666"}, {"caller_nid": "controller_migrationplanreconciler_determineandsettargetflavor", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1668"}, {"caller_nid": "controller_migrationplanreconciler_setosfamilyandstoragefields", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1682"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1716"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1721"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1723"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1728"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1730"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1735"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1736"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1738"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1742"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1749"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1753"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1755"}, {"caller_nid": "controller_migrationplanreconciler_setimagemetadatafromprofiles", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1757"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1771"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1776"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1777"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1778"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1781"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1785"}, {"caller_nid": "controller_migrationplanreconciler_resolveimageprofiles", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1793"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1812"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1814"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Marshal", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1815"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1817"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1819"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "delete", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1821"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1823"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1824"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationconfigmap", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1825"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "SetControllerReference", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1831"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1833"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Create", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1835"}, {"caller_nid": "controller_migrationplanreconciler_createresource", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1837"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Get", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1849"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1851"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1857"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1859"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1860"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1865"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "IsStatusConditionTrue", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1869"}, {"caller_nid": "controller_migrationplanreconciler_checkstatussuccess", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1870"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1884"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1887"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1891"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1895"}, {"caller_nid": "controller_migrationplanreconciler_reconcilemapping", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1903"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1913"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1914"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1914"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1916"}, {"caller_nid": "controller_migrationplan_controller_getdatastoresforvolumemapping", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1918"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1936"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1942"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1944"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1951"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1953"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1963"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1969"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1974"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1981"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1984"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "VerifyNetworks", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1985"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1987"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1989"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1991"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1991"}, {"caller_nid": "controller_migrationplanreconciler_reconcilenetwork", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L1993"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2008"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2010"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2016"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2021"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2027"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2030"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "VerifyStorage", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2031"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2033"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2035"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2037"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2037"}, {"caller_nid": "controller_migrationplanreconciler_reconcilestorage", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2039"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "WithValues", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2055"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2064"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetOpenStackClients", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2066"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2068"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "FindHotplugBaseFlavor", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2071"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2073"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2075"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2079"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2083"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "GetK8sCompatibleVMWareObjectName", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2086"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2094"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2096"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2098"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2101"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "MergeFrom", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2110"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "DeepCopy", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2110"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Patch", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2112"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2113"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2115"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2121"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2127"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2128"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2132"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2135"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2137"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2143"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrapf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2147"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2171"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2171"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2177"}, {"caller_nid": "controller_migrationplanreconciler_triggermigration", "callee": "Sleep", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2178"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Complete", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2190"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithOptions", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2190"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "Owns", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2190"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "For", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2190"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "NewControllerManagedBy", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2190"}, {"caller_nid": "controller_migrationplanreconciler_setupwithmanager", "callee": "WithPredicates", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2192"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Current", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2230"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "ReadDir", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2238"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2240"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2248"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2254"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2257"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2260"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2260"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2261"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2264"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2267"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2268"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2273"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2278"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2281"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2282"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2282"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2283"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2287"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2294"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "DeepEqual", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2300"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2301"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2303"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2304"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2310"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2310"}, {"caller_nid": "controller_migrationplanreconciler_validatevddkpresence", "callee": "Wrap", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2313"}, {"caller_nid": "controller_migrationplan_controller_mergelabels", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2322"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2335"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2337"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "string", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2339"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2340"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2345"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2346"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2350"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetVjailbreakSettings", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2354"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2361"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2361"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2361"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2362"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2367"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2367"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2370"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2370"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2374"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2374"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2374"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2375"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "ValidateRDMDiskFields", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2381"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2383"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2387"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2389"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2396"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2396"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2403"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2405"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2406"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2413"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2413"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2422"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2424"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "IsConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2425"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2426"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2426"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2431"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2434"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "FromContext", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2434"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "GetName", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2436"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2449"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2450"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2458"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2459"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2464"}, {"caller_nid": "controller_migrationplanreconciler_migraterdmdisks", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2468"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "TrimSpace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2478"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2481"}, {"caller_nid": "controller_migrationplanreconciler_validatevmos", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2492"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2504"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2505"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2509"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2509"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2510"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2510"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2515"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2523"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2527"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2530"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2531"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2532"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2532"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2536"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2537"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Errorf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2539"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2542"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "make", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2543"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "len", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2543"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Sprintf", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2547"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Info", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2548"}, {"caller_nid": "controller_migrationplanreconciler_validatemigrationplanvms", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2550"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "PollUntilContextTimeout", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2566"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2572"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "IsNotFound", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2577"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2585"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "RetryOnConflict", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2589"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Get", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2591"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "append", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2596"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Update", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2597"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Status", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2597"}, {"caller_nid": "controller_migrationplanreconciler_updatemigrationphasewithretry", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2601"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "List", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2614"}, {"caller_nid": "controller_migrationplanreconciler_isvmsucceededinplan", "callee": "InNamespace", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2615"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2634"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationvalidationfailed", "callee": "Error", "is_member_call": true, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2637"}, {"caller_nid": "controller_migrationplanreconciler_markmigrationfailed", "callee": "Now", "is_member_call": false, "source_file": "/home/flint/vjailbreak/k8s/migration/internal/controller/migrationplan_controller.go", "source_location": "L2648"}]} \ No newline at end of file diff --git a/k8s/migration/api/v1alpha1/openstackcreds_types.go b/k8s/migration/api/v1alpha1/openstackcreds_types.go index a23dc7844..8dd886b8f 100644 --- a/k8s/migration/api/v1alpha1/openstackcreds_types.go +++ b/k8s/migration/api/v1alpha1/openstackcreds_types.go @@ -112,6 +112,14 @@ type OpenstackCredsSpec struct { // +optional OsInterface string `json:"osInterface,omitempty"` + // CloudName selects which cloud entry to use when SecretRef points to a Secret + // containing a clouds.yaml key. Ignored when the Secret contains only legacy + // OS_* keys. When omitted with a single-entry clouds.yaml, that entry is used. + // When omitted with a multi-entry clouds.yaml, the resource reports + // CredentialsParsed=False with Reason=AmbiguousCloudName. + // +optional + CloudName string `json:"cloudName,omitempty"` + // Flavors is the list of available flavors in openstack Flavors []flavors.Flavor `json:"flavors,omitempty"` @@ -124,17 +132,38 @@ type OpenstackCredsSpec struct { // OpenstackCredsStatus defines the observed state of OpenstackCreds type OpenstackCredsStatus struct { + // Conditions represent the latest available observations of an OpenstackCreds's state. + // Standard Condition Types include CredentialsParsed, CredentialsValidated, + // RolesSufficient, Expiring, and Expired. + // +listType=map + // +listMapKey=type + // +optional + Conditions []metav1.Condition `json:"conditions,omitempty"` + // Openstack is the OpenStack configuration for the openstackcreds Openstack OpenstackInfo `json:"openstack,omitempty"` - // OpenStackValidationStatus is the status of the OpenStack validation + + // OpenStackValidationStatus is the legacy summary status string. It is + // superseded by Conditions (the "CredentialsValidated" Type). The + // controller continues to populate this field as a derived view of + // Conditions so existing UI and API consumers (UI components reading + // openstackValidationStatus, pkg/vpwned proxy, etc.) keep working through + // the Conditions migration window. New consumers should read Conditions; + // this field will be removed in a future release once downstream + // consumers migrate. + // +optional OpenStackValidationStatus string `json:"openstackValidationStatus,omitempty"` - // OpenStackValidationMessage is the message associated with the OpenStack validation + // OpenStackValidationMessage is the legacy summary message string, + // superseded by Conditions[*].Message. Populated as a derived view for + // back-compat alongside OpenStackValidationStatus. + // +optional OpenStackValidationMessage string `json:"openstackValidationMessage,omitempty"` } // +kubebuilder:object:root=true // +kubebuilder:subresource:status -// +kubebuilder:printcolumn:JSONPath=`.status.openstackValidationStatus`,name=Status,type=string +// +kubebuilder:printcolumn:JSONPath=`.status.conditions[?(@.type=="CredentialsValidated")].status`,name=Validated,type=string +// +kubebuilder:printcolumn:JSONPath=`.status.conditions[?(@.type=="CredentialsValidated")].reason`,name=Reason,type=string // +kubebuilder:printcolumn:name="Secret Name",type="string",JSONPath=".spec.secretRef.name" // +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp" diff --git a/k8s/migration/api/v1alpha1/zz_generated.deepcopy.go b/k8s/migration/api/v1alpha1/zz_generated.deepcopy.go index e0b4ccd4a..74db3ad27 100644 --- a/k8s/migration/api/v1alpha1/zz_generated.deepcopy.go +++ b/k8s/migration/api/v1alpha1/zz_generated.deepcopy.go @@ -1521,6 +1521,13 @@ func (in *OpenstackCredsSpec) DeepCopy() *OpenstackCredsSpec { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *OpenstackCredsStatus) DeepCopyInto(out *OpenstackCredsStatus) { *out = *in + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]metav1.Condition, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } in.Openstack.DeepCopyInto(&out.Openstack) } diff --git a/k8s/migration/config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml b/k8s/migration/config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml index 7a4e0d660..31ab621be 100644 --- a/k8s/migration/config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml +++ b/k8s/migration/config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml @@ -15,8 +15,11 @@ spec: scope: Namespaced versions: - additionalPrinterColumns: - - jsonPath: .status.openstackValidationStatus - name: Status + - jsonPath: .status.conditions[?(@.type=="CredentialsValidated")].status + name: Validated + type: string + - jsonPath: .status.conditions[?(@.type=="CredentialsValidated")].reason + name: Reason type: string - jsonPath: .spec.secretRef.name name: Secret Name @@ -53,6 +56,14 @@ spec: spec: description: OpenstackCredsSpec defines the desired state of OpenstackCreds properties: + cloudName: + description: |- + CloudName selects which cloud entry to use when SecretRef points to a Secret + containing a clouds.yaml key. Ignored when the Secret contains only legacy + OS_* keys. When omitted with a single-entry clouds.yaml, that entry is used. + When omitted with a multi-entry clouds.yaml, the resource reports + CredentialsParsed=False with Reason=AmbiguousCloudName. + type: string flavors: description: Flavors is the list of available flavors in openstack items: @@ -214,6 +225,69 @@ spec: status: description: OpenstackCredsStatus defines the observed state of OpenstackCreds properties: + conditions: + description: |- + Conditions represent the latest available observations of an OpenstackCreds's state. + Standard Condition Types include CredentialsParsed, CredentialsValidated, + RolesSufficient, Expiring, and Expired. + items: + description: Condition contains details for one aspect of the current + state of this API Resource. + properties: + lastTransitionTime: + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + format: date-time + type: string + message: + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. + maxLength: 32768 + type: string + observedGeneration: + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date + with respect to the current state of the instance. + format: int64 + minimum: 0 + type: integer + reason: + description: |- + reason contains a programmatic identifier indicating the reason for the condition's last transition. + Producers of specific condition types may define expected values and meanings for this field, + and whether the values are considered a guaranteed API. + The value should be a CamelCase string. + This field may not be empty. + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: type of condition in CamelCase or in foo.example.com/CamelCase. + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map openstack: description: Openstack is the OpenStack configuration for the openstackcreds properties: @@ -283,12 +357,21 @@ spec: type: array type: object openstackValidationMessage: - description: OpenStackValidationMessage is the message associated - with the OpenStack validation + description: |- + OpenStackValidationMessage is the legacy summary message string, + superseded by Conditions[*].Message. Populated as a derived view for + back-compat alongside OpenStackValidationStatus. type: string openstackValidationStatus: - description: OpenStackValidationStatus is the status of the OpenStack - validation + description: |- + OpenStackValidationStatus is the legacy summary status string. It is + superseded by Conditions (the "CredentialsValidated" Type). The + controller continues to populate this field as a derived view of + Conditions so existing UI and API consumers (UI components reading + openstackValidationStatus, pkg/vpwned proxy, etc.) keep working through + the Conditions migration window. New consumers should read Conditions; + this field will be removed in a future release once downstream + consumers migrate. type: string type: object type: object diff --git a/k8s/migration/internal/controller/migrationplan_controller.go b/k8s/migration/internal/controller/migrationplan_controller.go index c843fc45a..fb7d78b8d 100644 --- a/k8s/migration/internal/controller/migrationplan_controller.go +++ b/k8s/migration/internal/controller/migrationplan_controller.go @@ -45,6 +45,7 @@ import ( batchv1 "k8s.io/api/batch/v1" corev1 "k8s.io/api/core/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" + "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" @@ -1055,6 +1056,76 @@ func (r *MigrationPlanReconciler) CreateMigration(ctx context.Context, return migrationobj, nil } +// buildCloudsYAMLEnvVars reads the credential Secret referenced by an +// OpenstackCreds resource and, when it carries a clouds.yaml key, returns the +// full set of OS_* env vars (auth, microversion floor, region/interface/TLS +// settings) derived from the selected cloud entry. +// +// Without this, a clouds.yaml-keyed Secret mounted via EnvFrom on the v2v-helper +// pod produces no usable env vars — the only key in the Secret is the literal +// "clouds.yaml" string, which is not a valid POSIX env var name, so Kubernetes +// silently skips it. The v2v-helper's authOptionsFromEnv then fails immediately +// with "Missing environment variable OS_AUTH_URL". +// +// For legacy OS_*-keyed Secrets, returns nil — those env vars are auto-loaded +// by the EnvFrom block in the pod spec. Errors are non-fatal at the call site; +// the legacy path remains available even when this helper returns an error. +func buildCloudsYAMLEnvVars(ctx context.Context, k3sclient client.Client, secretName, cloudName string) ([]corev1.EnvVar, error) { + secret := &corev1.Secret{} + if err := k3sclient.Get(ctx, types.NamespacedName{ + Namespace: constants.NamespaceMigrationSystem, + Name: secretName, + }, secret); err != nil { + return nil, fmt.Errorf("get credential Secret %s: %w", secretName, err) + } + if !utils.SecretContainsCloudsYAML(secret.Data) { + return nil, nil + } + cfg, err := utils.ParseCloudsYAML(secret.Data["clouds.yaml"], cloudName) + if err != nil { + return nil, fmt.Errorf("parse clouds.yaml in Secret %s: %w", secretName, err) + } + + envVars := []corev1.EnvVar{} + addIfNonEmpty := func(name, value string) { + if value != "" { + envVars = append(envVars, corev1.EnvVar{Name: name, Value: value}) + } + } + + // Core auth fields — always present for any auth_type. + addIfNonEmpty("OS_AUTH_URL", cfg.AuthOptions.IdentityEndpoint) + addIfNonEmpty("OS_REGION_NAME", cfg.RegionName) + addIfNonEmpty("OS_INTERFACE", cfg.Interface) + if cfg.Verify != nil && !*cfg.Verify { + envVars = append(envVars, corev1.EnvVar{Name: "OS_INSECURE", Value: "true"}) + } + + // Auth-method-specific fields. + switch cfg.AuthType { + case "v3applicationcredential": + addIfNonEmpty("OS_APPLICATION_CREDENTIAL_ID", cfg.AuthOptions.ApplicationCredentialID) + addIfNonEmpty("OS_APPLICATION_CREDENTIAL_SECRET", cfg.AuthOptions.ApplicationCredentialSecret) + default: + // v3password / password / empty: user + password + project scope. + addIfNonEmpty("OS_USERNAME", cfg.AuthOptions.Username) + addIfNonEmpty("OS_USERID", cfg.AuthOptions.UserID) + addIfNonEmpty("OS_PASSWORD", cfg.AuthOptions.Password) + addIfNonEmpty("OS_DOMAIN_NAME", cfg.AuthOptions.DomainName) + addIfNonEmpty("OS_USER_DOMAIN_NAME", cfg.AuthOptions.DomainName) + addIfNonEmpty("OS_PROJECT_NAME", cfg.AuthOptions.TenantName) + addIfNonEmpty("OS_TENANT_NAME", cfg.AuthOptions.TenantName) + addIfNonEmpty("OS_PROJECT_ID", cfg.AuthOptions.TenantID) + } + + // Operator-configured microversion floor values. + for _, p := range utils.MicroversionsToEnvVars(cfg.Microversions) { + envVars = append(envVars, corev1.EnvVar{Name: p.Name, Value: p.Value}) + } + + return envVars, nil +} + // CreateJob creates a job to run v2v-helper func (r *MigrationPlanReconciler) CreateJob(ctx context.Context, migrationplan *vjailbreakv1alpha1.MigrationPlan, @@ -1064,6 +1135,7 @@ func (r *MigrationPlanReconciler) CreateJob(ctx context.Context, firstbootconfigMapName string, vmwareSecretRef string, openstackSecretRef string, + openstackCloudName string, vmMachine *vjailbreakv1alpha1.VMwareMachine, arrayCredsSecretRef string, ) error { @@ -1110,6 +1182,24 @@ func (r *MigrationPlanReconciler) CreateJob(ctx context.Context, }) } + // When the credential Secret is clouds.yaml-keyed, EnvFrom silently + // skips the "clouds.yaml" key (not a valid POSIX env var name), so the + // v2v-helper pod receives no OS_* env vars and authOptionsFromEnv fails + // immediately. Parse the clouds.yaml here and inject the full set of + // OS_* env vars (auth fields per auth_type, region/interface/TLS, and + // the per-service microversion floor values) explicitly. For legacy + // OS_*-keyed Secrets this is a no-op — those env vars are auto-loaded + // by EnvFrom. + if openstackSecretRef != "" { + cloudsEnvVars, err := buildCloudsYAMLEnvVars(ctx, r.Client, openstackSecretRef, openstackCloudName) + if err != nil { + r.ctxlog.Info("could not derive OS_* env vars from credential Secret; legacy OS_* path will still be honored via EnvFrom", + "secret", openstackSecretRef, "err", err.Error()) + } else { + envVars = append(envVars, cloudsEnvVars...) + } + } + // Get vjailbreak settings for pod resource configuration vjailbreakSettings, err := k8sutils.GetVjailbreakSettings(ctx, r.Client) if err != nil { @@ -1815,7 +1905,18 @@ func (r *MigrationPlanReconciler) checkStatusSuccess(ctx context.Context, if !ok { return false, errors.Wrap(err, "failed to convert credentials to OpenstackCreds") } - if openstackCreds.Status.OpenStackValidationStatus != string(corev1.PodSucceeded) { + // Conditions are authoritative when present (the controller and the + // vpwned proxy both write them alongside the flat status field). + // Fall back to the legacy flat field only when the Conditions slice + // is entirely empty — that case exists for pre-upgrade resources + // not yet re-reconciled by the upgraded OpenstackCreds controller. + var ready bool + if len(openstackCreds.Status.Conditions) > 0 { + ready = meta.IsStatusConditionTrue(openstackCreds.Status.Conditions, utils.ConditionCredentialsValidated) + } else { + ready = openstackCreds.Status.OpenStackValidationStatus == string(corev1.PodSucceeded) + } + if !ready { return false, errors.Errorf("openstackcreds '%s' CR is not validated", openstackCreds.Name) } } @@ -2114,6 +2215,7 @@ func (r *MigrationPlanReconciler) TriggerMigration(ctx context.Context, fbcm.Name, vmwcreds.Spec.SecretRef.Name, openstackcreds.Spec.SecretRef.Name, + openstackcreds.Spec.CloudName, vmMachineObj, arraycredsSecretRef) if err != nil { diff --git a/k8s/migration/internal/controller/openstackcreds_controller.go b/k8s/migration/internal/controller/openstackcreds_controller.go index 5f73792ec..e85e74c73 100644 --- a/k8s/migration/internal/controller/openstackcreds_controller.go +++ b/k8s/migration/internal/controller/openstackcreds_controller.go @@ -18,6 +18,7 @@ package controller import ( "context" + stderrors "errors" "fmt" "strings" "time" @@ -37,11 +38,14 @@ import ( "k8s.io/apimachinery/pkg/runtime" "k8s.io/client-go/util/retry" ctrl "sigs.k8s.io/controller-runtime" + "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/controller" "sigs.k8s.io/controller-runtime/pkg/controller/controllerutil" + "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/log" "sigs.k8s.io/controller-runtime/pkg/predicate" + "sigs.k8s.io/controller-runtime/pkg/reconcile" ) // OpenstackCredsReconciler reconciles a OpenstackCreds object @@ -267,8 +271,7 @@ func (r *OpenstackCredsReconciler) applyValidationResult(ctx context.Context, sc errMsg = "Creds are valid but for a different OpenStack environment. Enter creds of same OpenStack environment" } ctxlog.Error(result.Error, "Error validating OpenstackCreds", "openstackcreds", scope.OpenstackCreds.Name) - scope.OpenstackCreds.Status.OpenStackValidationStatus = constants.ValidationStatusFailed - scope.OpenstackCreds.Status.OpenStackValidationMessage = errMsg + setConditionsForInvalidResult(&scope.OpenstackCreds.Status, result.Error, errMsg) ctxlog.Info("Updating status to failed", "openstackcreds", scope.OpenstackCreds.Name, "message", errMsg) if err := r.Status().Update(ctx, scope.OpenstackCreds); err != nil { ctxlog.Error(err, "Error updating status of OpenstackCreds", "openstackcreds", scope.OpenstackCreds.Name) @@ -278,8 +281,7 @@ func (r *OpenstackCredsReconciler) applyValidationResult(ctx context.Context, sc return nil } - scope.OpenstackCreds.Status.OpenStackValidationStatus = string(corev1.PodSucceeded) - scope.OpenstackCreds.Status.OpenStackValidationMessage = "Successfully authenticated to Openstack" + setConditionsForValidResult(&scope.OpenstackCreds.Status, result.AppCred) ctxlog.Info("Updating status to success", "openstackcreds", scope.OpenstackCreds.Name) if err := r.Status().Update(ctx, scope.OpenstackCreds); err != nil { ctxlog.Error(err, "Error updating status of OpenstackCreds", "openstackcreds", scope.OpenstackCreds.Name) @@ -473,15 +475,138 @@ func generateArrayCredsName(volumeType, backendName string) string { } // SetupWithManager sets up the controller with the Manager. +// +// In addition to watching the OpenstackCreds resource itself, the controller +// watches every referenced credential Secret (via mapSecretToOpenstackCreds) +// so credential rotation — particularly Application Credential rotation in +// the clouds.yaml-backed format — is observed and re-validated automatically +// within seconds. This satisfies FR-018. func (r *OpenstackCredsReconciler) SetupWithManager(mgr ctrl.Manager) error { // Get max concurrent reconciles from vjailbreak settings configmap return ctrl.NewControllerManagedBy(mgr). - For(&vjailbreakv1alpha1.OpenstackCreds{}). - WithEventFilter(predicate.GenerationChangedPredicate{}). + For(&vjailbreakv1alpha1.OpenstackCreds{}, + builder.WithPredicates(predicate.GenerationChangedPredicate{}), + ). + Watches( + &corev1.Secret{}, + handler.EnqueueRequestsFromMapFunc(r.mapSecretToOpenstackCreds), + ). WithOptions(controller.Options{MaxConcurrentReconciles: r.MaxConcurrentReconciles}). Complete(r) } +// mapSecretToOpenstackCreds returns reconcile requests for all OpenstackCreds +// resources whose SecretRef points to the given Secret. The map function is +// called by controller-runtime on every Secret create/update/delete event in +// the namespaces the controller has access to. +func (r *OpenstackCredsReconciler) mapSecretToOpenstackCreds(ctx context.Context, obj client.Object) []reconcile.Request { + secret, ok := obj.(*corev1.Secret) + if !ok { + return nil + } + credsList := &vjailbreakv1alpha1.OpenstackCredsList{} + if err := r.List(ctx, credsList, client.InNamespace(secret.GetNamespace())); err != nil { + log.FromContext(ctx).Error(err, "mapSecretToOpenstackCreds: failed to list OpenstackCreds") + return nil + } + requests := make([]reconcile.Request, 0, len(credsList.Items)) + for i := range credsList.Items { + creds := &credsList.Items[i] + if creds.Spec.SecretRef.Name != secret.GetName() { + continue + } + requests = append(requests, reconcile.Request{ + NamespacedName: client.ObjectKey{ + Name: creds.GetName(), + Namespace: creds.GetNamespace(), + }, + }) + } + return requests +} + +// authenticated-and-validated case. When an Application Credential is in use +// and its metadata was fetched, Expiring / Expired are populated based on the +// credential's expires_at; otherwise they remain NotApplicable. Also writes +// the legacy flat OpenStackValidationStatus/Message fields as a derived view +// so the existing UI and pkg/vpwned proxy keep working through the Conditions +// migration window. +func setConditionsForValidResult(status *vjailbreakv1alpha1.OpenstackCredsStatus, appCred *utils.AppCredentialDetails) { + utils.SetCondition(&status.Conditions, utils.ConditionCredentialsParsed, metav1.ConditionTrue, utils.ReasonParsed, "Credential data parsed successfully") + utils.SetCondition(&status.Conditions, utils.ConditionCredentialsValidated, metav1.ConditionTrue, utils.ReasonAuthSucceeded, "Authenticated to destination Keystone") + + if appCred == nil { + utils.SetCondition(&status.Conditions, utils.ConditionExpiring, metav1.ConditionFalse, utils.ReasonNotApplicable, "Credential is not an Application Credential or details unavailable") + utils.SetCondition(&status.Conditions, utils.ConditionExpired, metav1.ConditionFalse, utils.ReasonNotApplicable, "Credential is not an Application Credential or details unavailable") + } else { + within30, within7, expired := utils.EvaluateAppCredExpiration(appCred.ExpiresAt, time.Now()) + switch { + case expired: + utils.SetCondition(&status.Conditions, utils.ConditionExpired, metav1.ConditionTrue, utils.ReasonExpired, fmt.Sprintf("Application Credential %s expired at %s", appCred.ID, appCred.ExpiresAt.Format(time.RFC3339))) + utils.SetCondition(&status.Conditions, utils.ConditionExpiring, metav1.ConditionFalse, utils.ReasonNotApplicable, "Credential already expired") + case within7: + utils.SetCondition(&status.Conditions, utils.ConditionExpiring, metav1.ConditionTrue, utils.ReasonWithin7Days, fmt.Sprintf("Application Credential %s expires at %s (within 7 days)", appCred.ID, appCred.ExpiresAt.Format(time.RFC3339))) + utils.SetCondition(&status.Conditions, utils.ConditionExpired, metav1.ConditionFalse, utils.ReasonActive, "Credential is active") + case within30: + utils.SetCondition(&status.Conditions, utils.ConditionExpiring, metav1.ConditionTrue, utils.ReasonWithin30Days, fmt.Sprintf("Application Credential %s expires at %s (within 30 days)", appCred.ID, appCred.ExpiresAt.Format(time.RFC3339))) + utils.SetCondition(&status.Conditions, utils.ConditionExpired, metav1.ConditionFalse, utils.ReasonActive, "Credential is active") + default: + utils.SetCondition(&status.Conditions, utils.ConditionExpiring, metav1.ConditionFalse, utils.ReasonNotApplicable, "Credential is not approaching expiration") + utils.SetCondition(&status.Conditions, utils.ConditionExpired, metav1.ConditionFalse, utils.ReasonActive, "Credential is active") + } + } + + status.OpenStackValidationStatus = string(corev1.PodSucceeded) + status.OpenStackValidationMessage = "Successfully authenticated to Openstack" +} + +// setConditionsForInvalidResult populates the OpenstackCreds Conditions for the +// validation-failure case. Distinguishes parse failures (CredentialsParsed=False +// with a parse-specific Reason mapped from the sentinel error type returned by +// utils.ParseCloudsYAML) from authentication failures (CredentialsParsed=True, +// CredentialsValidated=False with a Reason from utils.MapKeystoneError). Also +// writes the legacy flat OpenStackValidationStatus/Message fields as a derived +// view for back-compat. +func setConditionsForInvalidResult(status *vjailbreakv1alpha1.OpenstackCredsStatus, rawErr error, errMsg string) { + if parsedFalseReason := parseFailureReason(rawErr); parsedFalseReason != "" { + utils.SetCondition(&status.Conditions, utils.ConditionCredentialsParsed, metav1.ConditionFalse, parsedFalseReason, errMsg) + utils.SetCondition(&status.Conditions, utils.ConditionCredentialsValidated, metav1.ConditionUnknown, parsedFalseReason, "Not evaluated: credential data could not be parsed") + status.OpenStackValidationStatus = constants.ValidationStatusFailed + status.OpenStackValidationMessage = errMsg + return + } + + reason := utils.MapKeystoneError(rawErr) + utils.SetCondition(&status.Conditions, utils.ConditionCredentialsParsed, metav1.ConditionTrue, utils.ReasonParsed, "Credential data parsed successfully") + utils.SetCondition(&status.Conditions, utils.ConditionCredentialsValidated, metav1.ConditionFalse, reason, errMsg) + status.OpenStackValidationStatus = constants.ValidationStatusFailed + status.OpenStackValidationMessage = errMsg +} + +// parseFailureReason returns the appropriate Reason code when err wraps one of +// the ParseCloudsYAML sentinel errors. Returns "" when err is not a parse +// failure (caller treats as authentication-stage failure). +func parseFailureReason(err error) string { + if err == nil { + return "" + } + switch { + case stderrors.Is(err, utils.ErrInvalidYAML): + return utils.ReasonInvalidYAML + case stderrors.Is(err, utils.ErrAmbiguousCloudName): + return utils.ReasonAmbiguousCloudName + case stderrors.Is(err, utils.ErrCloudNotFound): + return utils.ReasonAmbiguousCloudName + case stderrors.Is(err, utils.ErrMissingRequiredField): + return utils.ReasonMissingRequiredField + case stderrors.Is(err, utils.ErrUnknownAuthType): + return utils.ReasonUnknownAuthType + case stderrors.Is(err, utils.ErrCacertPathUnresolvable): + return utils.ReasonCacertPathUnresolvable + } + return "" +} + func handleValidatedCreds(ctx context.Context, r *OpenstackCredsReconciler, scope *scope.OpenstackCredsScope) error { if err := setupMasterNode(ctx, r, scope); err != nil { return err @@ -552,7 +677,7 @@ func fetchAndUpdateFlavors(ctx context.Context, r *OpenstackCredsReconciler, sco func syncProjectName(ctx context.Context, r *OpenstackCredsReconciler, scope *scope.OpenstackCredsScope) error { ctxlog := scope.Logger - openstackCredential, err := utils.GetOpenstackCredentialsFromSecret(ctx, r.Client, scope.OpenstackCreds.Spec.SecretRef.Name) + openstackCredential, err := utils.GetOpenstackCredsInfoFromCreds(ctx, r.Client, scope.OpenstackCreds) if err != nil { ctxlog.Error(err, "Failed to get OpenStack credentials from secret", "secretName", scope.OpenstackCreds.Spec.SecretRef.Name) return errors.Wrap(err, "failed to get Openstack credentials from secret") diff --git a/k8s/migration/internal/controller/openstackcreds_controller_test.go b/k8s/migration/internal/controller/openstackcreds_controller_test.go index ae2255c0c..91ff12abf 100644 --- a/k8s/migration/internal/controller/openstackcreds_controller_test.go +++ b/k8s/migration/internal/controller/openstackcreds_controller_test.go @@ -24,20 +24,22 @@ import ( "github.com/onsi/ginkgo/v2" "github.com/onsi/gomega" vjailbreakv1alpha1 "github.com/platform9/vjailbreak/k8s/migration/api/v1alpha1" + "github.com/platform9/vjailbreak/k8s/migration/pkg/utils" openstackvalidation "github.com/platform9/vjailbreak/pkg/common/validation/openstack" "k8s.io/apimachinery/pkg/api/errors" + "k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client/fake" scope "github.com/platform9/vjailbreak/k8s/migration/pkg/scope" - constants "github.com/platform9/vjailbreak/pkg/common/constants" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/reconcile" ) // TestApplyValidationResult_ValidationFailure tests that applyValidationResult -// marks validation failures with the single terminal Failed status. +// surfaces validation failures via the CredentialsValidated Condition with an +// appropriate Reason. func TestApplyValidationResult_ValidationFailure(t *testing.T) { scheme := runtime.NewScheme() _ = vjailbreakv1alpha1.AddToScheme(scheme) @@ -46,19 +48,19 @@ func TestApplyValidationResult_ValidationFailure(t *testing.T) { const name = "test-oscreds" tests := []struct { - name string - result openstackvalidation.ValidationResult - wantValidationStatus string + name string + result openstackvalidation.ValidationResult + wantReason string }{ { - name: "auth failure marks failed", - result: openstackvalidation.ValidationResult{Valid: false, Error: fmt.Errorf("auth failed"), Message: "auth failed"}, - wantValidationStatus: constants.ValidationStatusFailed, + name: "auth failure -> CredentialInvalidOrRevoked", + result: openstackvalidation.ValidationResult{Valid: false, Error: fmt.Errorf("401 auth failed"), Message: "401 auth failed"}, + wantReason: utils.ReasonCredentialInvalidOrRevoked, }, { - name: "connection failure marks failed", - result: openstackvalidation.ValidationResult{Valid: false, Error: fmt.Errorf("connection refused"), Message: "connection refused"}, - wantValidationStatus: constants.ValidationStatusFailed, + name: "timeout -> KeystoneUnreachable", + result: openstackvalidation.ValidationResult{Valid: false, Error: fmt.Errorf("connection timeout"), Message: "connection timeout"}, + wantReason: utils.ReasonKeystoneUnreachable, }, } @@ -85,8 +87,15 @@ func TestApplyValidationResult_ValidationFailure(t *testing.T) { if err := fakeClient.Get(context.Background(), types.NamespacedName{Name: name, Namespace: ns}, updated); err != nil { t.Fatalf("failed to get updated OpenstackCreds: %v", err) } - if updated.Status.OpenStackValidationStatus != tt.wantValidationStatus { - t.Errorf("OpenStackValidationStatus = %q, want %q", updated.Status.OpenStackValidationStatus, tt.wantValidationStatus) + cond := meta.FindStatusCondition(updated.Status.Conditions, utils.ConditionCredentialsValidated) + if cond == nil { + t.Fatalf("expected %q Condition on resource; got none", utils.ConditionCredentialsValidated) + } + if cond.Status != metav1.ConditionFalse { + t.Errorf("Condition Status = %q; want False", cond.Status) + } + if cond.Reason != tt.wantReason { + t.Errorf("Condition Reason = %q; want %q", cond.Reason, tt.wantReason) } }) } diff --git a/k8s/migration/pkg/utils/app_credentials.go b/k8s/migration/pkg/utils/app_credentials.go new file mode 100644 index 000000000..442f5867c --- /dev/null +++ b/k8s/migration/pkg/utils/app_credentials.go @@ -0,0 +1,139 @@ +package utils + +import ( + "context" + "errors" + "fmt" + "net/http" + "strings" + "time" + + "github.com/gophercloud/gophercloud/v2" + "github.com/gophercloud/gophercloud/v2/openstack" + "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/applicationcredentials" + "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/tokens" +) + +// AppCredentialDetails holds the metadata vjailbreak needs from a fetched +// Keystone Application Credential. ExpiresAt may be nil for credentials +// without an expiration. +type AppCredentialDetails struct { + ID string + ExpiresAt *time.Time +} + +// ExpirationWindow days thresholds for the Expiring Condition reasons. +const ( + ExpirationWindow30Days = 30 * 24 * time.Hour + ExpirationWindow7Days = 7 * 24 * time.Hour +) + +// EvaluateAppCredExpiration classifies an Application Credential's expiration +// state relative to now. Returns the boolean flags used to drive the Expiring +// and Expired Conditions on the OpenstackCreds status. A nil expiresAt (the +// credential never expires) returns all-false. +func EvaluateAppCredExpiration(expiresAt *time.Time, now time.Time) (within30, within7, expired bool) { + if expiresAt == nil { + return false, false, false + } + if !now.Before(*expiresAt) { + return false, false, true + } + remaining := expiresAt.Sub(now) + if remaining <= ExpirationWindow7Days { + return true, true, false + } + if remaining <= ExpirationWindow30Days { + return true, false, false + } + return false, false, false +} + +// FetchAppCredentialDetails queries Keystone for the Application Credential +// referenced by the authenticated session and returns its metadata. The caller +// supplies an already-authenticated ProviderClient and the credential ID from +// the clouds.yaml auth block. +// +// Returns nil, nil when the AppCred metadata cannot be retrieved for benign +// reasons (e.g., insufficient permission to read application credentials); the +// caller treats this as "details unavailable, skip Expiring/Expired conditions". +// Returns nil, error for unexpected failures the caller may want to log. +func FetchAppCredentialDetails(ctx context.Context, providerClient *gophercloud.ProviderClient, credentialID string) (*AppCredentialDetails, error) { + if providerClient == nil { + return nil, fmt.Errorf("provider client is nil") + } + if credentialID == "" { + return nil, fmt.Errorf("application credential id is empty") + } + + authResult := providerClient.GetAuthResult() + if authResult == nil { + return nil, fmt.Errorf("provider client has no auth result; was Authenticate called?") + } + createResult, ok := authResult.(tokens.CreateResult) + if !ok { + // Token-create auth result not available (e.g., admin auth path); skip. + return nil, nil //nolint:nilnil // intentional: details unavailable, not an error + } + user, err := createResult.ExtractUser() + if err != nil { + return nil, fmt.Errorf("extract user from auth result: %w", err) + } + + identityClient, err := openstack.NewIdentityV3(providerClient, gophercloud.EndpointOpts{}) + if err != nil { + return nil, fmt.Errorf("create identity v3 client: %w", err) + } + + appCred, err := applicationcredentials.Get(ctx, identityClient, user.ID, credentialID).Extract() + if err != nil { + // 403 here typically means the credential lacks identity:get_application_credential + // scope. Authentication itself succeeded, so we treat this as "details + // unavailable" rather than a hard failure. + return nil, fmt.Errorf("fetch application credential %s for user %s: %w", credentialID, user.ID, err) + } + + details := &AppCredentialDetails{ID: appCred.ID} + if appCred.ExpiresAt != (time.Time{}) { + expires := appCred.ExpiresAt + details.ExpiresAt = &expires + } + return details, nil +} + +// MapKeystoneError maps a gophercloud authentication error to one of the +// Condition Reason codes defined in this package. The mapping is heuristic — +// gophercloud surfaces HTTP status via typed errors when available and via +// string matching as a fallback. +func MapKeystoneError(err error) string { + if err == nil { + return ReasonAuthSucceeded + } + + var errDefault gophercloud.ErrUnexpectedResponseCode + if errors.As(err, &errDefault) { + switch errDefault.Actual { + case http.StatusUnauthorized: + return ReasonCredentialInvalidOrRevoked + case http.StatusForbidden: + return ReasonInsufficientRoles + case http.StatusNotFound: + return ReasonKeystoneUnreachable + } + } + + msg := err.Error() + switch { + case strings.Contains(msg, "401"), strings.Contains(msg, "Unauthorized"), strings.Contains(msg, "revoked"): + return ReasonCredentialInvalidOrRevoked + case strings.Contains(msg, "403"), strings.Contains(msg, "Forbidden"): + return ReasonInsufficientRoles + case strings.Contains(msg, "404"), strings.Contains(msg, "auth_url"), strings.Contains(msg, "Auth URL"): + return ReasonKeystoneUnreachable + case strings.Contains(msg, "timeout"), strings.Contains(msg, "no such host"), strings.Contains(msg, "connection refused"): + return ReasonKeystoneUnreachable + case strings.Contains(msg, "x509"), strings.Contains(msg, "certificate"), strings.Contains(msg, "TLS"): + return ReasonTLSVerificationFailed + } + return ReasonCredentialInvalidOrRevoked +} diff --git a/k8s/migration/pkg/utils/app_credentials_test.go b/k8s/migration/pkg/utils/app_credentials_test.go new file mode 100644 index 000000000..c2265757e --- /dev/null +++ b/k8s/migration/pkg/utils/app_credentials_test.go @@ -0,0 +1,114 @@ +package utils + +import ( + "errors" + "fmt" + "net/http" + "testing" + "time" + + "github.com/gophercloud/gophercloud/v2" +) + +func TestEvaluateAppCredExpiration(t *testing.T) { + now := time.Date(2026, 5, 18, 12, 0, 0, 0, time.UTC) + + cases := []struct { + name string + expiresAt *time.Time + want30 bool + want7 bool + wantExpired bool + }{ + { + name: "never expires (nil)", + expiresAt: nil, + }, + { + name: "already expired (1 hour ago)", + expiresAt: timePtr(now.Add(-1 * time.Hour)), + wantExpired: true, + }, + { + name: "exactly now -> expired", + expiresAt: timePtr(now), + wantExpired: true, + }, + { + name: "1 day from now -> within7 + within30", + expiresAt: timePtr(now.Add(24 * time.Hour)), + want30: true, + want7: true, + }, + { + name: "7 days exactly -> within7 + within30 (boundary inclusive)", + expiresAt: timePtr(now.Add(7 * 24 * time.Hour)), + want30: true, + want7: true, + }, + { + name: "8 days from now -> within30 only", + expiresAt: timePtr(now.Add(8 * 24 * time.Hour)), + want30: true, + }, + { + name: "30 days exactly -> within30 (boundary inclusive)", + expiresAt: timePtr(now.Add(30 * 24 * time.Hour)), + want30: true, + }, + { + name: "31 days from now -> neither flag", + expiresAt: timePtr(now.Add(31 * 24 * time.Hour)), + }, + { + name: "1 year from now -> neither flag", + expiresAt: timePtr(now.Add(365 * 24 * time.Hour)), + }, + } + for _, tc := range cases { + t.Run(tc.name, func(t *testing.T) { + got30, got7, gotExpired := EvaluateAppCredExpiration(tc.expiresAt, now) + if got30 != tc.want30 || got7 != tc.want7 || gotExpired != tc.wantExpired { + t.Errorf("EvaluateAppCredExpiration(%v, %v) = (within30=%v, within7=%v, expired=%v); want (%v, %v, %v)", + tc.expiresAt, now, got30, got7, gotExpired, tc.want30, tc.want7, tc.wantExpired) + } + }) + } +} + +func TestMapKeystoneError(t *testing.T) { + cases := []struct { + name string + err error + want string + }{ + {"nil -> AuthSucceeded", nil, ReasonAuthSucceeded}, + {"typed 401 -> CredentialInvalidOrRevoked", &gophercloud.ErrUnexpectedResponseCode{Actual: http.StatusUnauthorized}, ReasonCredentialInvalidOrRevoked}, + {"typed 403 -> InsufficientRoles", &gophercloud.ErrUnexpectedResponseCode{Actual: http.StatusForbidden}, ReasonInsufficientRoles}, + {"typed 404 -> KeystoneUnreachable", &gophercloud.ErrUnexpectedResponseCode{Actual: http.StatusNotFound}, ReasonKeystoneUnreachable}, + {"string 401 -> CredentialInvalidOrRevoked", errors.New("auth failed: 401 Unauthorized"), ReasonCredentialInvalidOrRevoked}, + {"string Unauthorized -> CredentialInvalidOrRevoked", errors.New("got Unauthorized response"), ReasonCredentialInvalidOrRevoked}, + {"revoked -> CredentialInvalidOrRevoked", errors.New("application credential is revoked"), ReasonCredentialInvalidOrRevoked}, + {"string 403 -> InsufficientRoles", errors.New("403 Forbidden, missing role"), ReasonInsufficientRoles}, + {"string Forbidden -> InsufficientRoles", errors.New("Forbidden"), ReasonInsufficientRoles}, + {"string 404 -> KeystoneUnreachable", errors.New("got 404 from keystone"), ReasonKeystoneUnreachable}, + {"timeout -> KeystoneUnreachable", errors.New("connection timeout"), ReasonKeystoneUnreachable}, + {"no such host -> KeystoneUnreachable", errors.New("dial tcp: no such host"), ReasonKeystoneUnreachable}, + {"connection refused -> KeystoneUnreachable", errors.New("connection refused"), ReasonKeystoneUnreachable}, + {"x509 cert -> TLSVerificationFailed", errors.New("x509: certificate signed by unknown authority"), ReasonTLSVerificationFailed}, + {"TLS handshake -> TLSVerificationFailed", errors.New("TLS handshake failure"), ReasonTLSVerificationFailed}, + {"unknown -> CredentialInvalidOrRevoked default", errors.New("totally unexpected error"), ReasonCredentialInvalidOrRevoked}, + {"wrapped 401 -> CredentialInvalidOrRevoked", fmt.Errorf("authenticate: %w", &gophercloud.ErrUnexpectedResponseCode{Actual: http.StatusUnauthorized}), ReasonCredentialInvalidOrRevoked}, + } + for _, tc := range cases { + t.Run(tc.name, func(t *testing.T) { + if got := MapKeystoneError(tc.err); got != tc.want { + t.Errorf("MapKeystoneError(%v) = %q; want %q", tc.err, got, tc.want) + } + }) + } +} + +func timePtr(t time.Time) *time.Time { + return &t +} diff --git a/k8s/migration/pkg/utils/clouds_yaml.go b/k8s/migration/pkg/utils/clouds_yaml.go new file mode 100644 index 000000000..9e1dbde11 --- /dev/null +++ b/k8s/migration/pkg/utils/clouds_yaml.go @@ -0,0 +1,320 @@ +package utils + +import ( + "errors" + "fmt" + "sort" + "strings" + + "github.com/gophercloud/gophercloud/v2" + "gopkg.in/yaml.v3" +) + +// Sentinel errors returned by ParseCloudsYAML. Callers should map these to the +// corresponding Condition Reason codes when populating OpenstackCreds status. +var ( + // ErrInvalidYAML indicates the credential Secret's clouds.yaml content + // failed YAML parsing. Maps to ReasonInvalidYAML. + ErrInvalidYAML = errors.New("clouds.yaml: invalid YAML") + + // ErrAmbiguousCloudName indicates the clouds.yaml contains multiple cloud + // entries and no cloudName was supplied. The wrapper error message lists + // the available cloud names. Maps to ReasonAmbiguousCloudName. + ErrAmbiguousCloudName = errors.New("clouds.yaml: cloudName required when multiple cloud entries are present") + + // ErrCloudNotFound indicates the supplied cloudName does not match any + // cloud entry in the clouds.yaml. + ErrCloudNotFound = errors.New("clouds.yaml: cloudName not found") + + // ErrMissingRequiredField indicates a required field (e.g., auth_url) is + // absent from the selected cloud entry. Maps to ReasonMissingRequiredField. + ErrMissingRequiredField = errors.New("clouds.yaml: missing required field") + + // ErrUnknownAuthType indicates the cloud entry declares an auth_type that + // vjailbreak does not currently support. Maps to ReasonUnknownAuthType. + ErrUnknownAuthType = errors.New("clouds.yaml: unsupported auth_type") + + // ErrCacertPathUnresolvable indicates the cloud entry's cacert field is a + // filesystem path rather than inline certificate content. Maps to + // ReasonCacertPathUnresolvable. + ErrCacertPathUnresolvable = errors.New("clouds.yaml: cacert references a filesystem path; inline content required") +) + +// SecretContainsCloudsYAML reports whether the credential Secret's data +// indicates the new clouds.yaml-backed credential format. The function returns +// true if the Secret contains a non-empty value under the "clouds.yaml" key. +// Callers branch on this result to dispatch between the clouds.yaml parser +// and the legacy OS_*-keyed path. +func SecretContainsCloudsYAML(secretData map[string][]byte) bool { + v, ok := secretData["clouds.yaml"] + return ok && len(v) > 0 +} + +// MicroversionsToEnvVars converts the per-service microversion map produced by +// ParseCloudsYAML into the corresponding OS_*_API_VERSION env var name/value +// pairs that v2v-helper reads (see pkg/common/microversion.Floor). Returns +// pairs in a deterministic order (sorted by env var name) so the resulting +// job spec is stable across reconciles. +// +// For example, microversions["compute"] = "2.95" yields +// {Name: "OS_COMPUTE_API_VERSION", Value: "2.95"}. Service names that do not +// map to a known OS_*_API_VERSION env var are silently skipped (clouds.yaml +// fields like compute_api_version, volume_api_version, image_api_version, +// network_api_version, identity_api_version are the documented set). +func MicroversionsToEnvVars(microversions map[string]string) []EnvVarPair { + if len(microversions) == 0 { + return nil + } + pairs := make([]EnvVarPair, 0, len(microversions)) + for _, svc := range []string{"compute", "volume", "image", "network", "identity"} { + v, ok := microversions[svc] + if !ok || v == "" { + continue + } + pairs = append(pairs, EnvVarPair{ + Name: serviceMicroversionEnvName(svc), + Value: v, + }) + } + return pairs +} + +// EnvVarPair is a name/value tuple for an env var. Mirrors corev1.EnvVar's +// shape without pulling the Kubernetes API types into this package; callers +// adapt to corev1.EnvVar at use site. +type EnvVarPair struct { + Name string + Value string +} + +func serviceMicroversionEnvName(service string) string { + return "OS_" + strings.ToUpper(service) + "_API_VERSION" +} + +// CloudConfig is the parsed representation of a single cloud entry from +// clouds.yaml, mapped into the values vjailbreak's controller needs. +type CloudConfig struct { + // AuthOptions is ready to pass to openstack.AuthenticatedClient. + AuthOptions gophercloud.AuthOptions + + // AuthType is the literal auth_type from clouds.yaml (e.g., "v3password", + // "v3applicationcredential"). Useful for status reporting and operator UX. + AuthType string + + // RegionName is the OpenStack region for the destination cloud. + RegionName string + + // Interface is the endpoint interface ("public", "internal", "admin"). + Interface string + + // Microversions maps the gophercloud service name ("compute", "volume", + // "image", "network", "identity") to the operator-configured microversion + // from clouds.yaml's *_api_version fields. Empty when not configured. + Microversions map[string]string + + // Verify is the TLS verification setting from clouds.yaml. nil means + // "use library default". + Verify *bool + + // Cacert holds inline certificate content (PEM) when configured. + Cacert string +} + +// supportedAuthTypes lists the auth_type values vjailbreak currently consumes. +// Empty auth_type is permitted and defaults to v3password if username/password +// are present. +var supportedAuthTypes = map[string]struct{}{ + "": {}, + "v3password": {}, + "password": {}, + "v3applicationcredential": {}, +} + +// cloudsFile mirrors the subset of clouds.yaml that vjailbreak reads. +type cloudsFile struct { + Clouds map[string]cloudEntry `yaml:"clouds"` +} + +type cloudEntry struct { + AuthType string `yaml:"auth_type"` + Auth authBlock `yaml:"auth"` + RegionName string `yaml:"region_name"` + Interface string `yaml:"interface"` + Verify *bool `yaml:"verify"` + Cacert string `yaml:"cacert"` + IdentityAPIVersion string `yaml:"identity_api_version"` + ComputeAPIVersion string `yaml:"compute_api_version"` + VolumeAPIVersion string `yaml:"volume_api_version"` + ImageAPIVersion string `yaml:"image_api_version"` + NetworkAPIVersion string `yaml:"network_api_version"` +} + +type authBlock struct { + AuthURL string `yaml:"auth_url"` + Username string `yaml:"username"` + UserID string `yaml:"user_id"` + Password string `yaml:"password"` + ApplicationCredentialID string `yaml:"application_credential_id"` + ApplicationCredentialSecret string `yaml:"application_credential_secret"` + UserDomainName string `yaml:"user_domain_name"` + UserDomainID string `yaml:"user_domain_id"` + ProjectName string `yaml:"project_name"` + ProjectID string `yaml:"project_id"` + ProjectDomainName string `yaml:"project_domain_name"` + ProjectDomainID string `yaml:"project_domain_id"` + DomainName string `yaml:"domain_name"` + DomainID string `yaml:"domain_id"` +} + +// ParseCloudsYAML reads OpenStack clouds.yaml content from a Kubernetes Secret +// data value, selects the cloud entry by cloudName, and returns the parsed +// configuration. +// +// Selection rules: +// - If the YAML has exactly one cloud entry, cloudName may be empty. +// - If the YAML has multiple entries and cloudName is empty, returns +// ErrAmbiguousCloudName (wrapped with the list of cloud names). +// - If cloudName is supplied but not present, returns ErrCloudNotFound. +func ParseCloudsYAML(yamlBytes []byte, cloudName string) (*CloudConfig, error) { + file, err := parseCloudsFile(yamlBytes) + if err != nil { + return nil, err + } + + entry, selectedName, err := selectCloud(file, cloudName) + if err != nil { + return nil, err + } + _ = selectedName + + if _, ok := supportedAuthTypes[entry.AuthType]; !ok { + return nil, fmt.Errorf("%w: %q", ErrUnknownAuthType, entry.AuthType) + } + + if entry.Auth.AuthURL == "" { + return nil, fmt.Errorf("%w: auth_url", ErrMissingRequiredField) + } + + if entry.Cacert != "" && !looksLikeInlineCert(entry.Cacert) { + return nil, fmt.Errorf("%w: %q", ErrCacertPathUnresolvable, entry.Cacert) + } + + cfg := &CloudConfig{ + AuthType: entry.AuthType, + RegionName: entry.RegionName, + Interface: entry.Interface, + Verify: entry.Verify, + Cacert: entry.Cacert, + Microversions: collectMicroversions(entry), + } + cfg.AuthOptions = buildAuthOptions(entry) + return cfg, nil +} + +// CloudNames returns the top-level cloud entry names from a clouds.yaml. Used +// to surface available choices in error messages and status conditions when +// cloudName is ambiguous or unrecognized. +func CloudNames(yamlBytes []byte) ([]string, error) { + file, err := parseCloudsFile(yamlBytes) + if err != nil { + return nil, err + } + return sortedKeys(file.Clouds), nil +} + +func parseCloudsFile(yamlBytes []byte) (*cloudsFile, error) { + var file cloudsFile + if err := yaml.Unmarshal(yamlBytes, &file); err != nil { + return nil, fmt.Errorf("%w: %v", ErrInvalidYAML, err) + } + if len(file.Clouds) == 0 { + return nil, fmt.Errorf("%w: no cloud entries under top-level 'clouds' key", ErrInvalidYAML) + } + return &file, nil +} + +func selectCloud(file *cloudsFile, cloudName string) (cloudEntry, string, error) { + if cloudName == "" { + if len(file.Clouds) == 1 { + for name, entry := range file.Clouds { + return entry, name, nil + } + } + return cloudEntry{}, "", fmt.Errorf("%w: available cloud names: %s", + ErrAmbiguousCloudName, strings.Join(sortedKeys(file.Clouds), ", ")) + } + entry, ok := file.Clouds[cloudName] + if !ok { + return cloudEntry{}, "", fmt.Errorf("%w: %q (available: %s)", + ErrCloudNotFound, cloudName, strings.Join(sortedKeys(file.Clouds), ", ")) + } + return entry, cloudName, nil +} + +func buildAuthOptions(entry cloudEntry) gophercloud.AuthOptions { + opts := gophercloud.AuthOptions{ + IdentityEndpoint: entry.Auth.AuthURL, + Username: entry.Auth.Username, + UserID: entry.Auth.UserID, + Password: entry.Auth.Password, + ApplicationCredentialID: entry.Auth.ApplicationCredentialID, + ApplicationCredentialSecret: entry.Auth.ApplicationCredentialSecret, + DomainName: entry.Auth.DomainName, + DomainID: entry.Auth.DomainID, + } + + // Application Credentials carry scope at creation time; user-side + // project/domain hints are not forwarded to the auth request. + if entry.AuthType == "v3applicationcredential" { + return opts + } + + opts.TenantName = entry.Auth.ProjectName + opts.TenantID = entry.Auth.ProjectID + // User-domain hints fall back to domain hints when present. + if entry.Auth.UserDomainName != "" { + opts.DomainName = entry.Auth.UserDomainName + } + if entry.Auth.UserDomainID != "" { + opts.DomainID = entry.Auth.UserDomainID + } + return opts +} + +func collectMicroversions(entry cloudEntry) map[string]string { + mvs := map[string]string{} + if entry.IdentityAPIVersion != "" { + mvs["identity"] = entry.IdentityAPIVersion + } + if entry.ComputeAPIVersion != "" { + mvs["compute"] = entry.ComputeAPIVersion + } + if entry.VolumeAPIVersion != "" { + mvs["volume"] = entry.VolumeAPIVersion + } + if entry.ImageAPIVersion != "" { + mvs["image"] = entry.ImageAPIVersion + } + if entry.NetworkAPIVersion != "" { + mvs["network"] = entry.NetworkAPIVersion + } + return mvs +} + +// looksLikeInlineCert returns true when the cacert value appears to be inline +// PEM content rather than a filesystem path. Filesystem paths starting with +// "/" or "~/" would refer to the operator's local environment and are not +// resolvable inside the controller pod. +func looksLikeInlineCert(s string) bool { + trimmed := strings.TrimSpace(s) + return strings.HasPrefix(trimmed, "-----BEGIN") +} + +func sortedKeys(m map[string]cloudEntry) []string { + keys := make([]string, 0, len(m)) + for k := range m { + keys = append(keys, k) + } + sort.Strings(keys) + return keys +} diff --git a/k8s/migration/pkg/utils/clouds_yaml_test.go b/k8s/migration/pkg/utils/clouds_yaml_test.go new file mode 100644 index 000000000..71d6078f8 --- /dev/null +++ b/k8s/migration/pkg/utils/clouds_yaml_test.go @@ -0,0 +1,366 @@ +package utils + +import ( + "errors" + "sort" + "strings" + "testing" +) + +const singleEntryYAML = ` +clouds: + destination: + auth_type: v3password + auth: + auth_url: https://keystone.example.com:5000/v3 + username: admin + password: secret-password + project_name: migration + user_domain_name: Default + project_domain_name: Default + region_name: RegionOne + interface: public +` + +const multiEntryYAML = ` +clouds: + dc-paris: + auth_type: v3password + auth: + auth_url: https://paris.example.com:5000/v3 + username: paris-admin + password: paris-secret + project_name: migration + user_domain_name: Default + region_name: paris + interface: public + dc-frankfurt: + auth_type: v3applicationcredential + auth: + auth_url: https://frankfurt.example.com:5000/v3 + application_credential_id: appcred-id-123 + application_credential_secret: appcred-secret-xyz + region_name: frankfurt + interface: internal +` + +const appCredYAML = ` +clouds: + destination: + auth_type: v3applicationcredential + auth: + auth_url: https://keystone.example.com:5000/v3 + application_credential_id: my-app-cred-id + application_credential_secret: my-app-cred-secret + region_name: RegionOne + interface: public + compute_api_version: "2.95" + volume_api_version: "3.70" + image_api_version: "2.16" +` + +const cacertPathYAML = ` +clouds: + destination: + auth_type: v3password + auth: + auth_url: https://keystone.example.com:5000/v3 + username: admin + password: secret + region_name: RegionOne + cacert: /etc/ssl/certs/destination-ca.pem +` + +const cacertInlineYAML = ` +clouds: + destination: + auth_type: v3password + auth: + auth_url: https://keystone.example.com:5000/v3 + username: admin + password: secret + region_name: RegionOne + cacert: | + -----BEGIN CERTIFICATE----- + MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxxx + -----END CERTIFICATE----- +` + +const missingAuthURLYAML = ` +clouds: + destination: + auth_type: v3password + auth: + username: admin + password: secret +` + +const unknownAuthTypeYAML = ` +clouds: + destination: + auth_type: v3oidcaccesstoken + auth: + auth_url: https://keystone.example.com:5000/v3 + access_token: some-token +` + +func TestParseCloudsYAML_SingleEntryEmptyName(t *testing.T) { + cfg, err := ParseCloudsYAML([]byte(singleEntryYAML), "") + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if cfg.AuthOptions.IdentityEndpoint != "https://keystone.example.com:5000/v3" { + t.Errorf("IdentityEndpoint = %q; want keystone URL", cfg.AuthOptions.IdentityEndpoint) + } + if cfg.AuthOptions.Username != "admin" { + t.Errorf("Username = %q; want admin", cfg.AuthOptions.Username) + } + if cfg.AuthOptions.Password != "secret-password" { + t.Errorf("Password not populated") + } + if cfg.AuthType != "v3password" { + t.Errorf("AuthType = %q; want v3password", cfg.AuthType) + } + if cfg.RegionName != "RegionOne" { + t.Errorf("RegionName = %q; want RegionOne", cfg.RegionName) + } + if cfg.Interface != "public" { + t.Errorf("Interface = %q; want public", cfg.Interface) + } +} + +func TestParseCloudsYAML_MultiEntryNamed(t *testing.T) { + cfg, err := ParseCloudsYAML([]byte(multiEntryYAML), "dc-frankfurt") + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if cfg.AuthType != "v3applicationcredential" { + t.Errorf("AuthType = %q; want v3applicationcredential", cfg.AuthType) + } + if cfg.AuthOptions.ApplicationCredentialID != "appcred-id-123" { + t.Errorf("ApplicationCredentialID = %q; want appcred-id-123", cfg.AuthOptions.ApplicationCredentialID) + } + if cfg.AuthOptions.ApplicationCredentialSecret != "appcred-secret-xyz" { + t.Errorf("ApplicationCredentialSecret not populated") + } + if cfg.AuthOptions.Username != "" || cfg.AuthOptions.Password != "" { + t.Errorf("Username/Password should be empty for v3applicationcredential auth") + } + if cfg.RegionName != "frankfurt" { + t.Errorf("RegionName = %q; want frankfurt", cfg.RegionName) + } +} + +func TestParseCloudsYAML_MultiEntryEmptyNameAmbiguous(t *testing.T) { + _, err := ParseCloudsYAML([]byte(multiEntryYAML), "") + if !errors.Is(err, ErrAmbiguousCloudName) { + t.Fatalf("error = %v; want %v", err, ErrAmbiguousCloudName) + } + msg := err.Error() + if !strings.Contains(msg, "dc-paris") || !strings.Contains(msg, "dc-frankfurt") { + t.Errorf("error message should list available cloud names; got: %s", msg) + } +} + +func TestParseCloudsYAML_CloudNotFound(t *testing.T) { + _, err := ParseCloudsYAML([]byte(multiEntryYAML), "dc-london") + if !errors.Is(err, ErrCloudNotFound) { + t.Fatalf("error = %v; want %v", err, ErrCloudNotFound) + } +} + +func TestParseCloudsYAML_InvalidYAML(t *testing.T) { + _, err := ParseCloudsYAML([]byte("{not valid: yaml: at all: :"), "") + if !errors.Is(err, ErrInvalidYAML) { + t.Fatalf("error = %v; want %v", err, ErrInvalidYAML) + } +} + +func TestParseCloudsYAML_MissingAuthURL(t *testing.T) { + _, err := ParseCloudsYAML([]byte(missingAuthURLYAML), "") + if !errors.Is(err, ErrMissingRequiredField) { + t.Fatalf("error = %v; want %v", err, ErrMissingRequiredField) + } + if !strings.Contains(err.Error(), "auth_url") { + t.Errorf("error message should mention auth_url; got: %s", err) + } +} + +func TestParseCloudsYAML_UnknownAuthType(t *testing.T) { + _, err := ParseCloudsYAML([]byte(unknownAuthTypeYAML), "") + if !errors.Is(err, ErrUnknownAuthType) { + t.Fatalf("error = %v; want %v", err, ErrUnknownAuthType) + } + if !strings.Contains(err.Error(), "v3oidcaccesstoken") { + t.Errorf("error message should mention the offending auth_type; got: %s", err) + } +} + +func TestParseCloudsYAML_AppCredentialAndMicroversions(t *testing.T) { + cfg, err := ParseCloudsYAML([]byte(appCredYAML), "destination") + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if cfg.AuthOptions.ApplicationCredentialID != "my-app-cred-id" { + t.Errorf("ApplicationCredentialID = %q; want my-app-cred-id", cfg.AuthOptions.ApplicationCredentialID) + } + want := map[string]string{ + "compute": "2.95", + "volume": "3.70", + "image": "2.16", + } + if len(cfg.Microversions) != len(want) { + t.Errorf("Microversions size = %d; want %d (got %v)", len(cfg.Microversions), len(want), cfg.Microversions) + } + for svc, expected := range want { + if got := cfg.Microversions[svc]; got != expected { + t.Errorf("Microversions[%s] = %q; want %q", svc, got, expected) + } + } +} + +func TestParseCloudsYAML_CacertInlineAccepted(t *testing.T) { + cfg, err := ParseCloudsYAML([]byte(cacertInlineYAML), "") + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if !strings.Contains(cfg.Cacert, "BEGIN CERTIFICATE") { + t.Errorf("Cacert should contain inline PEM content; got: %q", cfg.Cacert) + } +} + +func TestParseCloudsYAML_CacertPathRejected(t *testing.T) { + _, err := ParseCloudsYAML([]byte(cacertPathYAML), "") + if !errors.Is(err, ErrCacertPathUnresolvable) { + t.Fatalf("error = %v; want %v", err, ErrCacertPathUnresolvable) + } +} + +func TestCloudNames_MultiEntry(t *testing.T) { + names, err := CloudNames([]byte(multiEntryYAML)) + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + sort.Strings(names) + want := []string{"dc-frankfurt", "dc-paris"} + if len(names) != len(want) { + t.Fatalf("got %d names, want %d (%v)", len(names), len(want), names) + } + for i, n := range names { + if n != want[i] { + t.Errorf("names[%d] = %q; want %q", i, n, want[i]) + } + } +} + +func TestCloudNames_SingleEntry(t *testing.T) { + names, err := CloudNames([]byte(singleEntryYAML)) + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + if len(names) != 1 || names[0] != "destination" { + t.Errorf("names = %v; want [destination]", names) + } +} + +func TestCloudNames_InvalidYAML(t *testing.T) { + _, err := CloudNames([]byte("{not yaml")) + if !errors.Is(err, ErrInvalidYAML) { + t.Fatalf("error = %v; want %v", err, ErrInvalidYAML) + } +} + +func TestMicroversionsToEnvVars(t *testing.T) { + cases := []struct { + name string + in map[string]string + want []EnvVarPair + }{ + {name: "nil map -> nil", in: nil, want: nil}, + {name: "empty map -> nil", in: map[string]string{}, want: nil}, + { + name: "compute and volume", + in: map[string]string{"compute": "2.95", "volume": "3.70"}, + want: []EnvVarPair{ + {Name: "OS_COMPUTE_API_VERSION", Value: "2.95"}, + {Name: "OS_VOLUME_API_VERSION", Value: "3.70"}, + }, + }, + { + name: "all five services", + in: map[string]string{ + "compute": "2.95", + "volume": "3.70", + "image": "2.16", + "network": "2.0", + "identity": "3", + }, + want: []EnvVarPair{ + {Name: "OS_COMPUTE_API_VERSION", Value: "2.95"}, + {Name: "OS_VOLUME_API_VERSION", Value: "3.70"}, + {Name: "OS_IMAGE_API_VERSION", Value: "2.16"}, + {Name: "OS_NETWORK_API_VERSION", Value: "2.0"}, + {Name: "OS_IDENTITY_API_VERSION", Value: "3"}, + }, + }, + { + name: "empty values skipped", + in: map[string]string{"compute": "2.95", "volume": ""}, + want: []EnvVarPair{ + {Name: "OS_COMPUTE_API_VERSION", Value: "2.95"}, + }, + }, + { + name: "unknown service silently skipped", + in: map[string]string{"compute": "2.95", "object-storage": "1.0"}, + want: []EnvVarPair{ + {Name: "OS_COMPUTE_API_VERSION", Value: "2.95"}, + }, + }, + } + for _, tc := range cases { + t.Run(tc.name, func(t *testing.T) { + got := MicroversionsToEnvVars(tc.in) + if len(got) != len(tc.want) { + t.Fatalf("got %d pairs, want %d (got=%v want=%v)", len(got), len(tc.want), got, tc.want) + } + for i := range got { + if got[i] != tc.want[i] { + t.Errorf("pair %d = %+v; want %+v", i, got[i], tc.want[i]) + } + } + }) + } +} + +func TestSecretContainsCloudsYAML(t *testing.T) { + cases := []struct { + name string + data map[string][]byte + want bool + }{ + {name: "nil data", data: nil, want: false}, + {name: "empty data", data: map[string][]byte{}, want: false}, + {name: "OS_* keys only", data: map[string][]byte{ + "OS_AUTH_URL": []byte("https://k.example.com:5000/v3"), + "OS_USERNAME": []byte("admin"), + }, want: false}, + {name: "clouds.yaml present", data: map[string][]byte{ + "clouds.yaml": []byte("clouds:\n destination: {}\n"), + }, want: true}, + {name: "clouds.yaml present plus OS_* keys (clouds.yaml wins)", data: map[string][]byte{ + "clouds.yaml": []byte("clouds:\n destination: {}\n"), + "OS_AUTH_URL": []byte("https://k.example.com:5000/v3"), + }, want: true}, + {name: "clouds.yaml key present but empty value", data: map[string][]byte{ + "clouds.yaml": []byte{}, + }, want: false}, + } + for _, tc := range cases { + t.Run(tc.name, func(t *testing.T) { + if got := SecretContainsCloudsYAML(tc.data); got != tc.want { + t.Errorf("SecretContainsCloudsYAML(%v) = %v; want %v", tc.data, got, tc.want) + } + }) + } +} diff --git a/k8s/migration/pkg/utils/conditions.go b/k8s/migration/pkg/utils/conditions.go new file mode 100644 index 000000000..babe7edf1 --- /dev/null +++ b/k8s/migration/pkg/utils/conditions.go @@ -0,0 +1,90 @@ +// Package utils — conditions helpers for the OpenstackCreds CRD. +// +// Defines the Condition Type and Reason constants that the controller writes +// into OpenstackCreds.status.conditions per the contract documented at +// specs/003-clouds-yaml-credentials/contracts/conditions.md, and provides +// thin helpers around k8s.io/apimachinery/pkg/api/meta.SetStatusCondition for +// the common patterns. +package utils + +import ( + "k8s.io/apimachinery/pkg/api/meta" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +// Condition Types reported on OpenstackCreds.status.conditions. +const ( + // ConditionCredentialsParsed indicates that the credential data was parsed + // successfully from either clouds.yaml or the legacy OS_* keys. + ConditionCredentialsParsed = "CredentialsParsed" + + // ConditionCredentialsValidated indicates that authentication against the + // destination Keystone endpoint succeeded. + ConditionCredentialsValidated = "CredentialsValidated" + + // ConditionRolesSufficient indicates that the authenticated principal + // carries the role set vjailbreak requires for destination operations. + ConditionRolesSufficient = "RolesSufficient" + + // ConditionExpiring indicates that an Application Credential is approaching + // its expires_at (within 30 days, or within 7 days as a stronger warning). + ConditionExpiring = "Expiring" + + // ConditionExpired indicates that an Application Credential has passed its + // expires_at and authentication will fail on the next attempt. + ConditionExpired = "Expired" +) + +// Reason codes for ConditionCredentialsParsed. +const ( + ReasonParsed = "Parsed" + ReasonInvalidYAML = "InvalidYAML" + ReasonMissingRequiredField = "MissingRequiredField" + ReasonAmbiguousCloudName = "AmbiguousCloudName" + ReasonUnknownAuthType = "UnknownAuthType" + ReasonCacertPathUnresolvable = "CacertPathUnresolvable" +) + +// Reason codes for ConditionCredentialsValidated. +const ( + ReasonAuthSucceeded = "AuthSucceeded" + // ReasonCredentialInvalidOrRevoked is the Reason for an authentication + // failure where the supplied credential is rejected or revoked. + //nolint:gosec // G101: the literal is a Reason code, not a credential value. + ReasonCredentialInvalidOrRevoked = "CredentialInvalidOrRevoked" + ReasonKeystoneUnreachable = "KeystoneUnreachable" + ReasonTLSVerificationFailed = "TLSVerificationFailed" +) + +// Reason codes for ConditionRolesSufficient. +const ( + ReasonRolesPresent = "RolesPresent" + ReasonInsufficientRoles = "InsufficientRoles" +) + +// Reason codes for ConditionExpiring. +const ( + ReasonWithin30Days = "Within30Days" + ReasonWithin7Days = "Within7Days" + ReasonNotApplicable = "NotApplicable" +) + +// Reason codes for ConditionExpired. +const ( + ReasonExpired = "Expired" + ReasonActive = "Active" +) + +// SetCondition wraps meta.SetStatusCondition for the common case where the +// caller supplies Type, Status, Reason, and Message. LastTransitionTime is +// managed by meta.SetStatusCondition: it advances only when Status changes +// for a given Type. ObservedGeneration must be set by the caller separately +// if needed (this helper does not touch it). +func SetCondition(conditions *[]metav1.Condition, conditionType string, status metav1.ConditionStatus, reason, message string) { + meta.SetStatusCondition(conditions, metav1.Condition{ + Type: conditionType, + Status: status, + Reason: reason, + Message: message, + }) +} diff --git a/k8s/migration/pkg/utils/conditions_test.go b/k8s/migration/pkg/utils/conditions_test.go new file mode 100644 index 000000000..af3f907c6 --- /dev/null +++ b/k8s/migration/pkg/utils/conditions_test.go @@ -0,0 +1,130 @@ +package utils + +import ( + "testing" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" +) + +// TestConditionTypeConstants pins the user-facing Type strings that downstream +// tooling (dashboards, alerts, kubectl jsonpath) may rely on. Renaming any of +// these is a breaking change to the CRD's status API. +func TestConditionTypeConstants(t *testing.T) { + cases := []struct { + name string + got string + want string + }{ + {"CredentialsParsed", ConditionCredentialsParsed, "CredentialsParsed"}, + {"CredentialsValidated", ConditionCredentialsValidated, "CredentialsValidated"}, + {"RolesSufficient", ConditionRolesSufficient, "RolesSufficient"}, + {"Expiring", ConditionExpiring, "Expiring"}, + {"Expired", ConditionExpired, "Expired"}, + } + for _, c := range cases { + t.Run(c.name, func(t *testing.T) { + if c.got != c.want { + t.Errorf("Condition Type constant = %q; want %q", c.got, c.want) + } + }) + } +} + +// TestReasonConstants pins the user-facing Reason strings. See conditions.md +// in the design contracts directory for the contract definition. +func TestReasonConstants(t *testing.T) { + cases := []struct { + name string + got string + want string + }{ + {"Parsed", ReasonParsed, "Parsed"}, + {"InvalidYAML", ReasonInvalidYAML, "InvalidYAML"}, + {"MissingRequiredField", ReasonMissingRequiredField, "MissingRequiredField"}, + {"AmbiguousCloudName", ReasonAmbiguousCloudName, "AmbiguousCloudName"}, + {"UnknownAuthType", ReasonUnknownAuthType, "UnknownAuthType"}, + {"CacertPathUnresolvable", ReasonCacertPathUnresolvable, "CacertPathUnresolvable"}, + + {"AuthSucceeded", ReasonAuthSucceeded, "AuthSucceeded"}, + {"CredentialInvalidOrRevoked", ReasonCredentialInvalidOrRevoked, "CredentialInvalidOrRevoked"}, + {"KeystoneUnreachable", ReasonKeystoneUnreachable, "KeystoneUnreachable"}, + {"TLSVerificationFailed", ReasonTLSVerificationFailed, "TLSVerificationFailed"}, + + {"RolesPresent", ReasonRolesPresent, "RolesPresent"}, + {"InsufficientRoles", ReasonInsufficientRoles, "InsufficientRoles"}, + + {"Within30Days", ReasonWithin30Days, "Within30Days"}, + {"Within7Days", ReasonWithin7Days, "Within7Days"}, + {"NotApplicable", ReasonNotApplicable, "NotApplicable"}, + + {"Expired", ReasonExpired, "Expired"}, + {"Active", ReasonActive, "Active"}, + } + for _, c := range cases { + t.Run(c.name, func(t *testing.T) { + if c.got != c.want { + t.Errorf("Reason constant = %q; want %q", c.got, c.want) + } + }) + } +} + +// TestSetCondition_AddsNewEntry verifies that SetCondition appends a new +// Condition with the supplied Type/Status/Reason/Message when no existing +// Condition of that Type is present. +func TestSetCondition_AddsNewEntry(t *testing.T) { + var conds []metav1.Condition + SetCondition(&conds, ConditionCredentialsParsed, metav1.ConditionTrue, ReasonParsed, "parsed clouds.yaml") + if len(conds) != 1 { + t.Fatalf("expected 1 condition after SetCondition, got %d", len(conds)) + } + c := conds[0] + if c.Type != ConditionCredentialsParsed { + t.Errorf("Type = %q; want %q", c.Type, ConditionCredentialsParsed) + } + if c.Status != metav1.ConditionTrue { + t.Errorf("Status = %q; want True", c.Status) + } + if c.Reason != ReasonParsed { + t.Errorf("Reason = %q; want %q", c.Reason, ReasonParsed) + } + if c.Message != "parsed clouds.yaml" { + t.Errorf("Message = %q; want %q", c.Message, "parsed clouds.yaml") + } + if c.LastTransitionTime.IsZero() { + t.Errorf("LastTransitionTime must be set when adding a new Condition") + } +} + +// TestSetCondition_UpdatesExistingEntry verifies that SetCondition replaces +// the existing Condition of the same Type rather than appending a duplicate, +// and updates LastTransitionTime only when Status changes. +func TestSetCondition_UpdatesExistingEntry(t *testing.T) { + var conds []metav1.Condition + SetCondition(&conds, ConditionCredentialsValidated, metav1.ConditionTrue, ReasonAuthSucceeded, "auth ok") + if len(conds) != 1 { + t.Fatalf("setup: expected 1 condition, got %d", len(conds)) + } + firstTransition := conds[0].LastTransitionTime + + // Same Status: LastTransitionTime should NOT change. + SetCondition(&conds, ConditionCredentialsValidated, metav1.ConditionTrue, ReasonAuthSucceeded, "auth still ok") + if len(conds) != 1 { + t.Fatalf("expected 1 condition after second SetCondition with same Status, got %d", len(conds)) + } + if !conds[0].LastTransitionTime.Equal(&firstTransition) { + t.Errorf("LastTransitionTime changed when Status did not change") + } + + // Status flip: LastTransitionTime should advance. + SetCondition(&conds, ConditionCredentialsValidated, metav1.ConditionFalse, ReasonCredentialInvalidOrRevoked, "revoked") + if len(conds) != 1 { + t.Fatalf("expected 1 condition after Status flip, got %d", len(conds)) + } + if conds[0].Status != metav1.ConditionFalse { + t.Errorf("Status = %q; want False", conds[0].Status) + } + if conds[0].LastTransitionTime.Equal(&firstTransition) { + t.Errorf("LastTransitionTime did not advance on Status change") + } +} diff --git a/k8s/migration/pkg/utils/credutils.go b/k8s/migration/pkg/utils/credutils.go index 3b6e74bee..8c3cdd161 100644 --- a/k8s/migration/pkg/utils/credutils.go +++ b/k8s/migration/pkg/utils/credutils.go @@ -112,11 +112,59 @@ func GetVMwareCredentialsFromSecret(ctx context.Context, k3sclient client.Client return vmwarecommon.GetVMwareCredentialsFromSecret(ctx, k3sclient, secretName) } -// GetOpenstackCredentialsFromSecret retrieves and checks the secret +// GetOpenstackCredentialsFromSecret retrieves and checks the secret. Handles +// only the legacy OS_*-keyed Secret format. Callers that may encounter a +// clouds.yaml-backed Secret must use GetOpenstackCredsInfoFromCreds (which +// branches on Secret content and uses the OpenstackCreds.Spec.CloudName for +// multi-entry clouds.yaml selection). func GetOpenstackCredentialsFromSecret(ctx context.Context, k3sclient client.Client, secretName string) (vjailbreakv1alpha1.OpenStackCredsInfo, error) { return openstackcommon.GetOpenstackCredentialsFromSecret(ctx, k3sclient, secretName) } +// GetOpenstackCredsInfoFromCreds returns an OpenStackCredsInfo for the given +// OpenstackCreds resource, supporting both clouds.yaml-keyed Secrets (the new +// path that consults Spec.CloudName for multi-entry selection) and legacy +// OS_*-keyed Secrets (the existing path). +// +// Post-validation enrichment functions (flavor discovery, network/volume-type +// listing, security group listing, project name sync, Cinder backend pool +// discovery) must use this helper rather than GetOpenstackCredentialsFromSecret +// directly so they work for clouds.yaml-backed credentials. For +// auth_type=v3applicationcredential, the returned info has empty +// Username/Password/TenantName since Application Credentials carry scope at +// creation time; consumers that require those fields must check explicitly. +func GetOpenstackCredsInfoFromCreds(ctx context.Context, k3sclient client.Client, openstackcreds *vjailbreakv1alpha1.OpenstackCreds) (vjailbreakv1alpha1.OpenStackCredsInfo, error) { + if openstackcreds == nil { + return vjailbreakv1alpha1.OpenStackCredsInfo{}, errors.New("openstackcreds cannot be nil") + } + secret := &corev1.Secret{} + if err := k3sclient.Get(ctx, k8stypes.NamespacedName{ + Namespace: constants.NamespaceMigrationSystem, + Name: openstackcreds.Spec.SecretRef.Name, + }, secret); err != nil { + return vjailbreakv1alpha1.OpenStackCredsInfo{}, errors.Wrapf(err, "failed to get secret %q", openstackcreds.Spec.SecretRef.Name) + } + if SecretContainsCloudsYAML(secret.Data) { + cfg, err := ParseCloudsYAML(secret.Data["clouds.yaml"], openstackcreds.Spec.CloudName) + if err != nil { + return vjailbreakv1alpha1.OpenStackCredsInfo{}, errors.Wrap(err, "failed to parse clouds.yaml") + } + info := vjailbreakv1alpha1.OpenStackCredsInfo{ + AuthURL: cfg.AuthOptions.IdentityEndpoint, + Username: cfg.AuthOptions.Username, + Password: cfg.AuthOptions.Password, + RegionName: cfg.RegionName, + TenantName: cfg.AuthOptions.TenantName, + DomainName: cfg.AuthOptions.DomainName, + } + if cfg.Verify != nil && !*cfg.Verify { + info.Insecure = true + } + return info, nil + } + return openstackcommon.GetOpenstackCredentialsFromSecret(ctx, k3sclient, openstackcreds.Spec.SecretRef.Name) +} + // VerifyNetworks verifies the existence of specified networks in OpenStack func VerifyNetworks(ctx context.Context, k3sclient client.Client, openstackcreds *vjailbreakv1alpha1.OpenstackCreds, targetnetworks []string) error { openstackClients, err := GetOpenStackClients(ctx, k3sclient, openstackcreds) @@ -274,7 +322,7 @@ func GetOpenstackInfo(ctx context.Context, k3sclient client.Client, openstackcre }) } - credsInfo, err := GetOpenstackCredentialsFromSecret(ctx, k3sclient, openstackcreds.Spec.SecretRef.Name) + credsInfo, err := GetOpenstackCredsInfoFromCreds(ctx, k3sclient, openstackcreds) if err != nil { return nil, errors.Wrap(err, "failed to get openstack credentials for project lookup") } @@ -317,7 +365,7 @@ func GetOpenStackClients(ctx context.Context, k3sclient client.Client, openstack return nil, errors.New("openstackcreds cannot be nil") } - openstackCredential, err := GetOpenstackCredentialsFromSecret(ctx, k3sclient, openstackcreds.Spec.SecretRef.Name) + openstackCredential, err := GetOpenstackCredsInfoFromCreds(ctx, k3sclient, openstackcreds) if err != nil { return nil, errors.Wrap(err, "failed to get openstack credentials from secret") } @@ -358,6 +406,19 @@ func GetOpenStackClients(ctx context.Context, k3sclient client.Client, openstack func ValidateAndGetProviderClient(ctx context.Context, k3sclient client.Client, openstackcreds *vjailbreakv1alpha1.OpenstackCreds, ) (*gophercloud.ProviderClient, error) { + // Branch on credential Secret content: clouds.yaml takes precedence over + // legacy OS_* keys when both are present. + secret := &corev1.Secret{} + if err := k3sclient.Get(ctx, k8stypes.NamespacedName{ + Namespace: constants.NamespaceMigrationSystem, + Name: openstackcreds.Spec.SecretRef.Name, + }, secret); err != nil { + return nil, errors.Wrapf(err, "failed to get secret %q", openstackcreds.Spec.SecretRef.Name) + } + if SecretContainsCloudsYAML(secret.Data) { + return validateProviderClientFromCloudsYAML(ctx, k3sclient, secret.Data["clouds.yaml"], openstackcreds.Spec.CloudName) + } + openstackCredential, err := GetOpenstackCredentialsFromSecret(ctx, k3sclient, openstackcreds.Spec.SecretRef.Name) if err != nil { return nil, errors.Wrap(err, "failed to get openstack credentials from secret") @@ -423,6 +484,68 @@ func ValidateAndGetProviderClient(ctx context.Context, k3sclient client.Client, return providerClient, nil } +// validateProviderClientFromCloudsYAML is the clouds.yaml-backed credential +// validation path. It parses the YAML, constructs the provider client, applies +// TLS settings, and authenticates against Keystone. See [[clouds_yaml.go]] for +// the parser contract and the sentinel errors returned on failure. +// +// Cacert inline content from clouds.yaml is parsed and validated against +// filesystem-path misuse, but the inline content is not yet wired into the +// HTTP client (TODO: integrate with netutils CA pool). For now, operators +// requiring a custom CA must use `verify: false` until that wiring lands. +func validateProviderClientFromCloudsYAML(ctx context.Context, k3sclient client.Client, + cloudsYAML []byte, cloudName string, +) (*gophercloud.ProviderClient, error) { + cfg, err := ParseCloudsYAML(cloudsYAML, cloudName) + if err != nil { + return nil, err + } + + providerClient, err := openstack.NewClient(cfg.AuthOptions.IdentityEndpoint) + if err != nil { + return nil, errors.Wrap(err, "failed to create openstack client") + } + + vjbNet := netutils.NewVjbNet() + if cfg.Verify != nil && !*cfg.Verify { + vjbNet.Insecure = true + } + if vjbSettings, err := k8sutils.GetVjailbreakSettings(ctx, k3sclient); err != nil { + log.FromContext(ctx).Error(err, "failed to get vjailbreak settings, using default HTTP timeout") + } else { + vjbNet.SetTimeout(time.Duration(vjbSettings.HTTPTimeoutSeconds) * time.Second) + } + if vjbNet.CreateSecureHTTPClient() == nil { + providerClient.HTTPClient = *vjbNet.GetClient() + } else { + return nil, fmt.Errorf("failed to create secure HTTP client") + } + + if err := openstack.Authenticate(ctx, providerClient, cfg.AuthOptions); err != nil { + switch { + case strings.Contains(err.Error(), "401"): + return nil, fmt.Errorf("authentication failed: credential rejected or revoked") + case strings.Contains(err.Error(), "404"): + return nil, fmt.Errorf("authentication failed: the authentication URL or project name is incorrect") + case strings.Contains(err.Error(), "timeout"): + return nil, fmt.Errorf("connection timeout: unable to reach the OpenStack authentication service. Please check your network connection and auth_url") + default: + return nil, fmt.Errorf("authentication failed: %w", err) + } + } + + if cfg.RegionName != "" { + if _, err := VerifyCredentialsMatchCurrentEnvironment(providerClient, cfg.RegionName); err != nil { + if strings.Contains(err.Error(), "Credentials are valid but for a different OpenStack environment") { + return nil, err + } + return nil, fmt.Errorf("failed to verify credentials against current environment: %w", err) + } + } + + return providerClient, nil +} + var vmwareClientMap *sync.Map // ValidateVMwareCreds validates the VMware credentials @@ -2134,7 +2257,7 @@ func GetBackendPools(ctx context.Context, k3sclient client.Client, openstackcred ctxlog.Info("Discovering backend pools from OpenStack Cinder") // Get OpenStack credentials to extract region - openstackCredential, err := GetOpenstackCredentialsFromSecret(ctx, k3sclient, openstackcreds.Spec.SecretRef.Name) + openstackCredential, err := GetOpenstackCredsInfoFromCreds(ctx, k3sclient, openstackcreds) if err != nil { return nil, errors.Wrap(err, "failed to get OpenStack credentials from secret") } diff --git a/pkg/common/microversion/microversion.go b/pkg/common/microversion/microversion.go new file mode 100644 index 000000000..d14a9506c --- /dev/null +++ b/pkg/common/microversion/microversion.go @@ -0,0 +1,92 @@ +// Package microversion provides an operator-configurable floor over hardcoded +// OpenStack service microversion values. +// +// vjailbreak hardcodes microversion values for specific operations (for example, +// 2.60 on the Nova compute attach call to support multi-attach volumes). When +// the operator configures a per-service API version through clouds.yaml +// (compute_api_version, volume_api_version, image_api_version, +// network_api_version, identity_api_version), the value is consumed as a floor: +// the higher of the operator-configured version and the internal hardcoded +// version wins, so a misconfigured low version cannot lower the microversion +// the operation requires. +package microversion + +import ( + "math" + "strconv" + "strings" +) + +const latestSentinel = "latest" + +// Floor returns the higher of two OpenStack microversion strings of the form +// "MAJOR.MINOR" or "MAJOR". The literal value "latest" is treated as greater +// than any specific version. An empty or unparseable value is treated as "no +// override" and loses to any valid version. +// +// The returned string is the original (un-normalized) form of whichever input +// wins. +func Floor(configValue, hardcodedValue string) string { + if compareVersions(configValue, hardcodedValue) >= 0 { + return configValue + } + return hardcodedValue +} + +// compareVersions returns -1, 0, or 1 if a is less than, equal to, or greater +// than b. Unparseable values are treated as "no version" and rank below any +// valid version (and equal to each other). +func compareVersions(a, b string) int { + aMajor, aMinor, aOK := parseVersion(a) + bMajor, bMinor, bOK := parseVersion(b) + + switch { + case !aOK && !bOK: + return 0 + case !aOK: + return -1 + case !bOK: + return 1 + } + + if aMajor != bMajor { + return signInt(aMajor - bMajor) + } + return signInt(aMinor - bMinor) +} + +func signInt(n int) int { + switch { + case n < 0: + return -1 + case n > 0: + return 1 + } + return 0 +} + +// parseVersion returns (major, minor, true) for valid "MAJOR.MINOR", "MAJOR", +// or the "latest" sentinel. For "latest" it returns max int values so any +// numeric comparison ranks it highest. +func parseVersion(s string) (major, minor int, ok bool) { + if s == "" { + return 0, 0, false + } + if s == latestSentinel { + return math.MaxInt32, math.MaxInt32, true + } + + parts := strings.SplitN(s, ".", 2) + major, err := strconv.Atoi(parts[0]) + if err != nil { + return 0, 0, false + } + if len(parts) == 1 { + return major, 0, true + } + minor, err = strconv.Atoi(parts[1]) + if err != nil { + return 0, 0, false + } + return major, minor, true +} diff --git a/pkg/common/microversion/microversion_test.go b/pkg/common/microversion/microversion_test.go new file mode 100644 index 000000000..626c5ee01 --- /dev/null +++ b/pkg/common/microversion/microversion_test.go @@ -0,0 +1,119 @@ +package microversion + +import "testing" + +func TestFloor(t *testing.T) { + tests := []struct { + name string + config string + hard string + expected string + }{ + { + name: "config empty, hardcoded set -> hardcoded wins", + config: "", + hard: "2.60", + expected: "2.60", + }, + { + name: "config lower than hardcoded -> hardcoded wins", + config: "2.50", + hard: "2.60", + expected: "2.60", + }, + { + name: "config higher than hardcoded -> config wins", + config: "2.95", + hard: "2.60", + expected: "2.95", + }, + { + name: "config equal to hardcoded -> either is fine", + config: "2.60", + hard: "2.60", + expected: "2.60", + }, + { + name: "config set, hardcoded empty -> config wins", + config: "2.60", + hard: "", + expected: "2.60", + }, + { + name: "both empty -> empty", + config: "", + hard: "", + expected: "", + }, + { + name: "latest config beats any hardcoded", + config: "latest", + hard: "2.95", + expected: "latest", + }, + { + name: "hardcoded latest, config empty -> latest", + config: "", + hard: "latest", + expected: "latest", + }, + { + name: "config 2.100 vs hard 2.60 -> config wins (numeric compare, not lexical)", + config: "2.100", + hard: "2.60", + expected: "2.100", + }, + { + name: "different majors -> higher major wins", + config: "3.0", + hard: "2.95", + expected: "3.0", + }, + { + name: "config integer-only -> normalize and compare", + config: "3", + hard: "2.95", + expected: "3", + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + got := Floor(tc.config, tc.hard) + if got != tc.expected { + t.Errorf("Floor(%q, %q) = %q; want %q", tc.config, tc.hard, got, tc.expected) + } + }) + } +} + +func TestFloor_InvalidInputs(t *testing.T) { + tests := []struct { + name string + config string + hard string + expected string + }{ + { + name: "garbage config -> fall back to hardcoded", + config: "not-a-version", + hard: "2.60", + expected: "2.60", + }, + { + name: "garbage hard, valid config -> use config", + config: "2.60", + hard: "garbage", + expected: "2.60", + }, + } + + for _, tc := range tests { + t.Run(tc.name, func(t *testing.T) { + got := Floor(tc.config, tc.hard) + if got != tc.expected { + t.Errorf("Floor(%q, %q) = %q; want %q", tc.config, tc.hard, got, tc.expected) + } + }) + } +} diff --git a/pkg/common/validation/openstack/validate.go b/pkg/common/validation/openstack/validate.go index 1fd6b1398..cf36d154b 100644 --- a/pkg/common/validation/openstack/validate.go +++ b/pkg/common/validation/openstack/validate.go @@ -31,6 +31,12 @@ type ValidationResult struct { Valid bool Message string Error error + // AppCred carries Application Credential metadata fetched after successful + // authentication when auth_type is v3applicationcredential and the + // credential's metadata could be retrieved. Nil for non-AppCred auth or + // when the metadata fetch was unavailable. Drives the Expiring / Expired + // Conditions on OpenstackCreds.status. + AppCred *utils.AppCredentialDetails } func authErrorMessage(err error, isTokenAuth bool) string { @@ -65,6 +71,25 @@ func Validate(ctx context.Context, k8sClient client.Client, openstackcreds *vjai Message: "Successfully authenticated to Openstack", Error: nil, } + + // Branch on Secret content: clouds.yaml takes precedence over the legacy + // OS_* keys. See FR-001 / FR-003 in + // specs/003-clouds-yaml-credentials/spec.md. + secret := &corev1.Secret{} + if err := k8sClient.Get(ctx, k8stypes.NamespacedName{ + Name: openstackcreds.Spec.SecretRef.Name, + Namespace: namespaceMigrationSystem, + }, secret); err != nil { + return ValidationResult{ + Valid: false, + Message: fmt.Sprintf("Failed to get credentials secret: %s", err.Error()), + Error: err, + } + } + if utils.SecretContainsCloudsYAML(secret.Data) { + return validateFromCloudsYAML(ctx, k8sClient, openstackcreds, secret.Data["clouds.yaml"]) + } + // Get credentials from secret openstackCredential, err := getCredentialsFromSecret(ctx, k8sClient, openstackcreds.Spec.SecretRef.Name) if err != nil { @@ -166,6 +191,98 @@ func Validate(ctx context.Context, k8sClient client.Client, openstackcreds *vjai return successfulValidationObject } +// validateFromCloudsYAML performs credential validation when the Secret carries +// a clouds.yaml-formatted credential. Parses the YAML via utils.ParseCloudsYAML, +// builds a provider client, authenticates, and verifies the credential matches +// the current OpenStack environment. The function is invoked from Validate when +// SecretContainsCloudsYAML returns true; the legacy OS_* flow is unchanged. +func validateFromCloudsYAML(ctx context.Context, k8sClient client.Client, openstackcreds *vjailbreakv1alpha1.OpenstackCreds, cloudsYAML []byte) ValidationResult { + cfg, err := utils.ParseCloudsYAML(cloudsYAML, openstackcreds.Spec.CloudName) + if err != nil { + return ValidationResult{ + Valid: false, + Message: fmt.Sprintf("Failed to parse clouds.yaml: %s", err.Error()), + Error: err, + } + } + + providerClient, err := openstack.NewClient(cfg.AuthOptions.IdentityEndpoint) + if err != nil { + return ValidationResult{ + Valid: false, + Message: fmt.Sprintf("Failed to create OpenStack client: %s", err.Error()), + Error: err, + } + } + vjbNet := netutils.NewVjbNet() + if cfg.Verify != nil && !*cfg.Verify { + vjbNet.Insecure = true + } + vjbNet.SetTimeout(60 * time.Second) + if err := vjbNet.CreateSecureHTTPClient(); err != nil { + return ValidationResult{ + Valid: false, + Message: "failed to create secure HTTP client", + Error: fmt.Errorf("failed to create secure HTTP client %v", err), + } + } + providerClient.HTTPClient = *vjbNet.GetClient() + + if err := openstack.Authenticate(ctx, providerClient, cfg.AuthOptions); err != nil { + return ValidationResult{ + Valid: false, + Message: authErrorMessage(err, false), + Error: err, + } + } + if providerClient.EndpointLocator == nil { + return ValidationResult{ + Valid: false, + Message: "Authentication failed: client endpoint catalog was not initialized. Please verify your OpenStack credentials and try again", + Error: fmt.Errorf("authentication returned no error but ProviderClient.EndpointLocator is nil"), + } + } + + if cfg.RegionName != "" { + if _, err := verifyCredentialsMatchCurrentEnvironment(providerClient, cfg.RegionName); err != nil { + if strings.Contains(err.Error(), "Creds are valid but for a different OpenStack environment") { + return ValidationResult{ + Valid: false, + Message: "Creds are valid but for a different OpenStack environment", + Error: err, + } + } + return ValidationResult{ + Valid: false, + Message: fmt.Sprintf("Failed to verify credentials against current environment: %s", err.Error()), + Error: err, + } + } + } + + result := ValidationResult{ + Valid: true, + Message: "Successfully authenticated to Openstack", + Error: nil, + } + + // For v3applicationcredential auth, try to fetch the credential's metadata + // so the controller can populate the Expiring / Expired Conditions. A + // failure here is non-fatal: the credential itself authenticated, and + // the controller treats nil AppCred as "details unavailable". + if cfg.AuthType == "v3applicationcredential" && cfg.AuthOptions.ApplicationCredentialID != "" { + details, err := utils.FetchAppCredentialDetails(ctx, providerClient, cfg.AuthOptions.ApplicationCredentialID) + if err != nil { + ctrllog.FromContext(ctx).Info("could not fetch Application Credential details for status reporting", + "credentialID", cfg.AuthOptions.ApplicationCredentialID, "err", err.Error()) + } else { + result.AppCred = details + } + } + + return result +} + // getCredentialsFromSecret retrieves OpenStack credentials from a Kubernetes secret func getCredentialsFromSecret(ctx context.Context, k8sClient client.Client, secretName string) (vjailbreakv1alpha1.OpenStackCredsInfo, error) { var openstackCredsInfo vjailbreakv1alpha1.OpenStackCredsInfo diff --git a/pkg/vpwned/server/vjailbreak_proxy.go b/pkg/vpwned/server/vjailbreak_proxy.go index 8b359073a..f882ff4da 100644 --- a/pkg/vpwned/server/vjailbreak_proxy.go +++ b/pkg/vpwned/server/vjailbreak_proxy.go @@ -438,6 +438,27 @@ func (p *vjailbreakProxy) updateOpenstackValidationStatus(ctx context.Context, n } creds.Status.OpenStackValidationStatus = validationStatus creds.Status.OpenStackValidationMessage = validationMessage + + // Mirror the flat status into the Conditions slice. Without this, a + // vpwned write of "Failed" (e.g. from RevalidateCredentials after a + // password rotation) would leave stale CredentialsValidated=True from + // the controller's last reconcile, and downstream checks that prefer + // Conditions would allow migrations against known-bad credentials. + switch validationStatus { + case string(corev1.PodSucceeded): + migrationutils.SetCondition(&creds.Status.Conditions, + migrationutils.ConditionCredentialsValidated, metav1.ConditionTrue, + migrationutils.ReasonAuthSucceeded, validationMessage) + case constants.ValidationStatusFailed: + migrationutils.SetCondition(&creds.Status.Conditions, + migrationutils.ConditionCredentialsValidated, metav1.ConditionFalse, + migrationutils.ReasonCredentialInvalidOrRevoked, validationMessage) + case constants.ValidationStatusRevalidating: + migrationutils.SetCondition(&creds.Status.Conditions, + migrationutils.ConditionCredentialsValidated, metav1.ConditionUnknown, + constants.ValidationStatusRevalidating, validationMessage) + } + return p.K8sClient.Status().Update(ctx, creds) }) } diff --git a/specs/003-clouds-yaml-credentials/checklists/requirements.md b/specs/003-clouds-yaml-credentials/checklists/requirements.md new file mode 100644 index 000000000..3b335bbe0 --- /dev/null +++ b/specs/003-clouds-yaml-credentials/checklists/requirements.md @@ -0,0 +1,37 @@ +# Specification Quality Checklist: clouds.yaml credentials for OpenstackCreds + +**Purpose**: Validate specification completeness and quality before proceeding to planning +**Created**: 2026-05-18 +**Feature**: [spec.md](../spec.md) + +## Content Quality + +- [x] No implementation details (languages, frameworks, APIs) +- [x] Focused on user value and business needs +- [x] Written for non-technical stakeholders +- [x] All mandatory sections completed + +## Requirement Completeness + +- [x] No [NEEDS CLARIFICATION] markers remain +- [x] Requirements are testable and unambiguous +- [x] Success criteria are measurable +- [x] Success criteria are technology-agnostic (no implementation details) +- [x] All acceptance scenarios are defined +- [x] Edge cases are identified +- [x] Scope is clearly bounded +- [x] Dependencies and assumptions identified + +## Feature Readiness + +- [x] All functional requirements have clear acceptance criteria +- [x] User scenarios cover primary flows +- [x] Feature meets measurable outcomes defined in Success Criteria +- [x] No implementation details leak into specification + +## Notes + +- **Audience scope**: This feature targets OpenStack operators and Kubernetes administrators rather than general business stakeholders. Terms such as `clouds.yaml`, `Application Credential`, `auth_type`, and `OpenstackCreds resource` are the operator-facing vocabulary in the OpenStack/Kubernetes ecosystem and have been retained intentionally. They are not framework-specific implementation details to abstract away — they are the user-facing surface of the feature. +- **Microversion examples**: Acceptance Scenario 1.4 uses specific microversion values (2.65, 2.60) to illustrate the floor semantics. These are concrete to make the scenario testable rather than abstract. +- All checklist items pass on initial validation; no iteration required. +- Spec is ready for `/speckit-clarify` (optional) or `/speckit-plan` (next). diff --git a/specs/003-clouds-yaml-credentials/contracts/conditions.md b/specs/003-clouds-yaml-credentials/contracts/conditions.md new file mode 100644 index 000000000..c027234bb --- /dev/null +++ b/specs/003-clouds-yaml-credentials/contracts/conditions.md @@ -0,0 +1,67 @@ +# Condition Types and Reasons — OpenstackCreds + +## CredentialsParsed + +| Status | Reason | When | +|---|---|---| +| True | `Parsed` | Credential data parsed from `clouds.yaml` or OS_* successfully | +| False | `InvalidYAML` | `clouds.yaml` content fails YAML parsing | +| False | `MissingRequiredField` | A required field (e.g., `auth_url`) is missing from the parsed content | +| False | `AmbiguousCloudName` | Multi-entry `clouds.yaml` with no `cloudName` set; message lists available entries | +| False | `UnknownAuthType` | `auth_type` value is not supported by vjailbreak | +| False | `CacertPathUnresolvable` | `cacert` references an on-disk path; inline content required | + +## CredentialsValidated + +| Status | Reason | When | +|---|---|---| +| True | `AuthSucceeded` | Authenticated to destination Keystone successfully | +| False | `CredentialInvalidOrRevoked` | 401 from token endpoint (includes revoked Application Credentials) | +| False | `KeystoneUnreachable` | Network failure reaching the auth endpoint | +| False | `TLSVerificationFailed` | Cert chain validation failed (distinct from network failure) | + +## RolesSufficient + +| Status | Reason | When | +|---|---|---| +| True | `RolesPresent` | All vjailbreak-required roles are granted to the credential | +| False | `InsufficientRoles` | One or more required roles missing; message lists them | +| Unknown | (none) | Not yet evaluated (`CredentialsValidated=False`) | + +## Expiring + +| Status | Reason | When | +|---|---|---| +| True | `Within30Days` | App Cred `expires_at` is within 30 days | +| True | `Within7Days` | App Cred `expires_at` is within 7 days (more urgent) | +| False | `NotApplicable` | Credential is not an Application Credential, or no `expires_at` | +| False | (none) | Application Credential not approaching expiration | + +## Expired + +| Status | Reason | When | +|---|---|---| +| True | `Expired` | App Cred `expires_at` has passed; subsequent auth attempts will fail | +| False | `Active` | App Cred valid by expiry check | +| False | `NotApplicable` | Not an Application Credential | + +## Aggregate readiness + +A resource is "ready for migration" when: +- `CredentialsParsed=True` AND +- `CredentialsValidated=True` AND +- `RolesSufficient=True` AND +- `Expired=False` + +`Expiring=True` does not block readiness; it surfaces a warning for the operator to plan a rotation. + +## Message conventions + +- Messages MUST NOT contain credential secret material (passwords, application_credential_secret, tokens). +- Messages SHOULD reference the cloud name and auth URL when relevant for operator diagnosis. +- For `InsufficientRoles`, the message lists the missing role names (extracted from Keystone error response where available). +- For `AmbiguousCloudName`, the message lists the cloud entry keys present in the parsed YAML. + +## Standard Reason code stability + +Reason codes listed above are the contract: external tooling (alerts, dashboards) can rely on these strings. Additional Reason codes MAY be introduced in future releases; removal or rename is a breaking change requiring deprecation notice. diff --git a/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md b/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md new file mode 100644 index 000000000..365e229d6 --- /dev/null +++ b/specs/003-clouds-yaml-credentials/contracts/openstackcreds-crd.md @@ -0,0 +1,97 @@ +# OpenstackCreds CRD — schema delta (informative) + +This document is informative. The canonical CRD is generated by `make generate` inside `k8s/migration/` and lives at `k8s/migration/config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml`. Never hand-edit the generated file (constitution principle III). + +## Spec — added field + +```yaml +spec: + type: object + properties: + cloudName: + type: string + description: | + Selects which cloud entry to use from a multi-entry clouds.yaml in the + referenced Secret. Ignored when the Secret contains only legacy OS_* keys. + When omitted with a single-entry clouds.yaml, that entry is used. + When omitted with a multi-entry clouds.yaml, the resource reports + CredentialsParsed=False, Reason=AmbiguousCloudName. + # ... existing fields unchanged ... +``` + +## Status — replaced + +```yaml +status: + type: object + properties: + conditions: + type: array + items: + type: object + required: [type, status, lastTransitionTime, reason, message] + properties: + type: + type: string + enum: + - CredentialsParsed + - CredentialsValidated + - RolesSufficient + - Expiring + - Expired + status: + type: string + enum: [True, False, Unknown] + observedGeneration: + type: integer + format: int64 + lastTransitionTime: + type: string + format: date-time + reason: + type: string + maxLength: 1024 + message: + type: string + maxLength: 32768 + # openstackValidationStatus and openstackValidationMessage REMOVED +``` + +## Go struct delta (informative) + +```go +// k8s/migration/api/v1alpha1/openstackcreds_types.go + +type OpenstackCredsSpec struct { + // ... existing fields ... + + // CloudName selects which entry to use when SecretRef points to a Secret + // containing a clouds.yaml key. Ignored when only OS_* keys are present. + // +optional + CloudName string `json:"cloudName,omitempty"` +} + +type OpenstackCredsStatus struct { + // Conditions represent the latest available observations of the resource's state. + // +listType=map + // +listMapKey=type + // +optional + Conditions []metav1.Condition `json:"conditions,omitempty"` + + // openstackValidationStatus — REMOVED + // openstackValidationMessage — REMOVED + + Openstack OpenstackInfo `json:"openstack,omitempty"` +} +``` + +## Upgrade behavior + +`OpenstackCreds` resources existing prior to the upgrade carry populated `openstackValidationStatus` / `openstackValidationMessage` values. On first reconcile after upgrade: + +1. The controller reads the current Secret and re-validates. +2. The controller writes the equivalent Conditions to `status.conditions`. +3. The controller clears the legacy flat status fields by setting them to empty strings on the next status patch. +4. After this single transition, the resource operates entirely on the Conditions API. + +No operator action is required for the transition. diff --git a/specs/003-clouds-yaml-credentials/contracts/secret-keys.md b/specs/003-clouds-yaml-credentials/contracts/secret-keys.md new file mode 100644 index 000000000..5de502656 --- /dev/null +++ b/specs/003-clouds-yaml-credentials/contracts/secret-keys.md @@ -0,0 +1,75 @@ +# Credential Secret keys — contract + +## Modes + +The credential Secret operates in one of two modes, determined by the presence of the `clouds.yaml` key. + +### Mode A: clouds.yaml (preferred) + +```yaml +apiVersion: v1 +kind: Secret +metadata: + name: openstack-creds + namespace: migration-system +type: Opaque +stringData: + clouds.yaml: | + clouds: + destination: + auth_type: v3applicationcredential + auth: + auth_url: https://keystone.example.com:5000/v3 + application_credential_id: REDACTED + application_credential_secret: REDACTED + region_name: RegionOne + interface: public + compute_api_version: "2.95" + volume_api_version: "3.70" +``` + +The `OpenstackCreds` resource references this Secret via `secretRef.name` and selects the cloud entry via `cloudName: destination`. + +### Mode B: legacy OS_* (back-compat) + +```yaml +apiVersion: v1 +kind: Secret +metadata: + name: openstack-creds-legacy + namespace: migration-system +type: Opaque +stringData: + OS_AUTH_URL: https://keystone.example.com:5000/v3 + OS_USERNAME: admin + OS_PASSWORD: REDACTED + OS_DOMAIN_NAME: Default + OS_REGION_NAME: RegionOne + OS_TENANT_NAME: migration-project + OS_INTERFACE: public + OS_IDENTITY_API_VERSION: "3" +``` + +`cloudName` on the `OpenstackCreds` resource is ignored in this mode. + +## Conflict handling + +If both `clouds.yaml` AND any OS_* keys are present in the same Secret, `clouds.yaml` wins. The OS_* keys are silently ignored (no error, no warning condition). + +## Sharing constraints + +- A Mode A Secret MAY be referenced by multiple `OpenstackCreds` resources, each with a different `cloudName` (FR-016). +- A Mode B Secret retains its existing implicit 1:1 binding with a single `OpenstackCreds` resource. + +## Mutation observation + +The controller watches every credential Secret referenced by any `OpenstackCreds` resource. A change to a Secret's `data` (`clouds.yaml` content updated, OS_* values rotated, mode flipped) triggers re-reconciliation of all `OpenstackCreds` resources referencing that Secret within seconds. Already-running migrations are not aborted — see FR-018. + +## Security note + +`clouds.yaml` content may contain: +- User passwords (`auth.password`) +- Application Credential secrets (`auth.application_credential_secret`) +- TLS certificates / private keys (`cacert`) + +Per the project's standard practice, the Secret is stored encrypted at rest by Kubernetes and access is governed by RBAC. The controller MUST NOT log or echo any of these values into Kubernetes Events, controller logs, or `OpenstackCreds.status.conditions[*].message` (see research R-9). diff --git a/specs/003-clouds-yaml-credentials/data-model.md b/specs/003-clouds-yaml-credentials/data-model.md new file mode 100644 index 000000000..6822e3315 --- /dev/null +++ b/specs/003-clouds-yaml-credentials/data-model.md @@ -0,0 +1,130 @@ +# Data Model — clouds.yaml credentials + +## OpenstackCreds CRD (extended) + +### Spec — added field + +| Field | Type | Required | Description | +|---|---|---|---| +| `cloudName` | `string` | No | Selects which cloud entry to use from a multi-entry `clouds.yaml` in the referenced Secret. Ignored when the Secret contains only legacy OS_* keys. When omitted with a single-entry `clouds.yaml`, that entry is used. When omitted with a multi-entry `clouds.yaml`, the resource reports `CredentialsParsed=False, Reason=AmbiguousCloudName`. | + +### Spec — existing fields (unchanged, documented as legacy) + +| Field | Type | Status | +|---|---|---| +| `secretRef` | `corev1.ObjectReference` | Unchanged. Points to the credential Secret. | +| `osAuthUrl` | `string` | Legacy. Used when Secret contains only OS_* keys. | +| `osAuthToken` | `string` | Legacy. | +| `osUsername`, `osPassword`, `osDomainName`, `osRegionName`, `osTenantName`, `osInterface`, `osIdentityApiVersion`, `osInsecure` | various | Legacy. | +| `flavors`, `pcdHostConfig`, `projectName` | various | Unchanged — orthogonal to credentials. | + +### Status — replaced + +**Removed**: +- `openstackValidationStatus` (string) +- `openstackValidationMessage` (string) + +**Added**: +- `conditions []metav1.Condition` — Kubernetes-style condition slice. Standard fields: `Type`, `Status` (`True` / `False` / `Unknown`), `Reason`, `Message`, `LastTransitionTime`, `ObservedGeneration`. + +## Condition Types + +| Type | True meaning | False meaning | +|---|---|---| +| `CredentialsParsed` | Credential data parsed successfully from `clouds.yaml` or OS_* | Parsing failed | +| `CredentialsValidated` | Authentication succeeded against the destination Keystone | Authentication failed | +| `RolesSufficient` | The credential carries the roles required for the operations vjailbreak performs | One or more required roles missing | +| `Expiring` | An Application Credential expires within 30 days | Not approaching expiration, or not an Application Credential | +| `Expired` | An Application Credential has passed its `expires_at` | Not expired, or not an Application Credential | + +Conventions: +- All Conditions are set during every reconcile. +- A Condition is `Unknown` until the reconcile step that determines it runs (e.g., `RolesSufficient` is `Unknown` while `CredentialsValidated=False`). +- `Expiring` and `Expired` are mutually exclusive when applicable. + +Detailed Reason codes per Type are documented in `contracts/conditions.md`. + +## Credential Secret data keys + +### Mode A: clouds.yaml (preferred) + +| Key | Type | Description | +|---|---|---| +| `clouds.yaml` | YAML string | Standard OpenStack clouds.yaml content. Top-level keys are cloud entries. | + +### Mode B: legacy OS_* (back-compat) + +| Key | Type | Description | +|---|---|---| +| `OS_AUTH_URL` | string | Keystone endpoint. | +| `OS_USERNAME` | string | User name. | +| `OS_PASSWORD` | string | User password. | +| `OS_DOMAIN_NAME` | string | Domain name. | +| `OS_REGION_NAME` | string | Region. | +| `OS_TENANT_NAME` | string | Project (legacy term). | +| `OS_INTERFACE` | string | `public` / `internal` / `admin`. | +| `OS_IDENTITY_API_VERSION` | string | Typically `3`. | + +### Resolution precedence + +1. If `clouds.yaml` is present in the Secret data → use Mode A. OS_* keys are silently ignored. +2. Else → use Mode B (existing path, unchanged). + +## clouds.yaml — consumed subset + +The system honors the following standard fields from each cloud entry: + +- `auth.auth_url` +- `auth.username` + `auth.password` (for `auth_type: v3password`) +- `auth.application_credential_id` + `auth.application_credential_secret` (for `auth_type: v3applicationcredential`) +- `auth.user_domain_name`, `auth.project_domain_name`, `auth.project_name`, `auth.project_id` +- `auth_type` (`v3password`, `v3applicationcredential`) +- `region_name` +- `interface` +- `identity_api_version`, `compute_api_version`, `volume_api_version`, `image_api_version`, `network_api_version` +- `cacert` (inline only; on-disk paths are not resolvable inside the controller pod and produce a Condition hint) +- `verify` + +Any additional fields not in this list are tolerated (clientconfig may consume them) but are not part of vjailbreak's documented contract. + +## Sharing semantics + +- A Mode A Secret MAY be referenced by multiple `OpenstackCreds` resources, each with a different `cloudName`. The Secret content is shared; each resource validates and operates against its own selected cloud entry independently. (FR-016) +- A Mode B Secret retains its existing implicit 1:1 binding with a single `OpenstackCreds` resource. + +## State transitions + +```text +OpenstackCreds created or referenced Secret changed + │ + ▼ +[Reconcile] Parse Secret + │ + ├─ clouds.yaml present? ──Yes──▶ Parse via clientconfig + │ │ + │ ├─ Single entry, cloudName empty: use it + │ ├─ Multi entry, cloudName set: use selected + │ └─ Multi entry, cloudName empty: CredentialsParsed=False (AmbiguousCloudName) + │ + └─ Else (legacy OS_*) ───────────▶ Build AuthOptions from OS_* fields + │ + ▼ +[Reconcile] Authenticate to Keystone + │ + ├─ Success ──▶ CredentialsValidated=True; proceed to role + expiration checks + │ + └─ Fail ──▶ CredentialsValidated=False with mapped Reason + │ + ▼ +[Reconcile] Role coverage check + │ + └─ Result ──▶ RolesSufficient=True | False + │ + ▼ +[Reconcile] App Cred expiration check (if applicable) + │ + └─ Result ──▶ Expiring=True | False, Expired=True | False + │ + ▼ +Status updated; controller requeues on next Secret-watch event or periodic interval (1 hour default). +``` diff --git a/specs/003-clouds-yaml-credentials/plan.md b/specs/003-clouds-yaml-credentials/plan.md new file mode 100644 index 000000000..861bedccf --- /dev/null +++ b/specs/003-clouds-yaml-credentials/plan.md @@ -0,0 +1,96 @@ +# Implementation Plan: clouds.yaml credentials for OpenstackCreds + +**Branch**: `1952-clouds-yaml-credentials` | **Date**: 2026-05-18 | **Spec**: [spec.md](./spec.md) +**Input**: Feature specification from `/specs/003-clouds-yaml-credentials/spec.md` + +## Summary + +Introduce `clouds.yaml` as the credential format for the `OpenstackCreds` CRD with full back-compat for the existing OS_* keys. Wire per-service API version values from `clouds.yaml` (`compute_api_version`, `volume_api_version`, `image_api_version`, `network_api_version`, `identity_api_version`) as an operator-configurable floor over the internal hardcoded microversion values used in `v2v-helper`. Support OpenStack Application Credentials (`auth_type: v3applicationcredential`) for revocable, role-scoped, optionally time-bounded authentication. Replace the flat `OpenStackValidationStatus` / `OpenStackValidationMessage` status fields with a Kubernetes-style `status.conditions` slice. Add a credential Secret watch so credential rotation is observed automatically. Add a `clouds.yaml` paste-or-upload mode to the credential creation form in the web UI as the default credential entry path. + +Three PRs decompose from this feature: + +1. **PR #1**: Backend parser + CRD changes (new `cloudName` field, Conditions API) + microversion floor wiring + Secret watch +2. **PR #2**: Application Credentials support (`auth_type: v3applicationcredential`) on top of PR #1 +3. **PR #3**: UI credential input form (clouds.yaml default tab + legacy fallback) + +## Technical Context + +**Language/Version**: Go 1.21+ (controller and v2v-helper); TypeScript with React (UI) +**Primary Dependencies**: +- Backend: `github.com/gophercloud/utils/openstack/clientconfig` (clouds.yaml parser + AuthOptions builder), `github.com/gophercloud/gophercloud` (already vendored), `sigs.k8s.io/controller-runtime` (Conditions handling, Secret watch), `k8s.io/apimachinery/pkg/api/meta` (`meta.SetStatusCondition`). +- Frontend: existing React/MUI/Vite stack plus a YAML parser dependency (`js-yaml`, ~30-50 KB minified) for client-side validation and preview. + +**Storage**: Kubernetes etcd via CRDs; credential Secret holds the `clouds.yaml` key (Mode A) or legacy OS_* keys (Mode B). +**Testing**: Go `_test.go` table-driven tests with interface-based mocks per CLAUDE.md and constitution principle IV; controller tests via `cd k8s/migration && make test`; v2v-helper tests via `make test-v2v-helper` (requires `CGO_ENABLED=1 GOOS=linux GOARCH=amd64`); UI tests via the existing JS test framework in `ui/`. +**Target Platform**: Linux containers on k3s/Kubernetes (controller and v2v-helper); modern browsers (UI). +**Project Type**: Kubernetes-native controller with web UI (3 affected Go modules + 1 frontend module). +**Performance Goals**: Validation latency negligible (single Keystone token request per reconcile); Secret watch overhead negligible (informer cache hits); UI YAML parse <100 ms for typical clouds.yaml (<10 KB). +**Constraints**: Test-first development mandatory; never hand-edit generated files (`deploy/installer.yaml`, `zz_generated.deepcopy.go`); CGO required for v2v-helper; four independent Go modules with separate `go.sum`. +**Scale/Scope**: 3 PRs, ~5-8 changed/new Go files across `k8s/migration/` and `v2v-helper/`, ~3-5 React component changes in `ui/`. Test code expected to be larger than implementation. No new long-running goroutines beyond the Secret watch already supported by controller-runtime. + +## Constitution Check + +*GATE: Must pass before Phase 0 research. Re-check after Phase 1 design.* + +| Principle | Status | Notes | +|---|---|---| +| I. Kubernetes-Native Architecture | PASS | CRD-driven; Conditions API for status; Secret watch via controller-runtime informer. No external state management introduced. | +| II. External Documentation First | PASS | Research artifact references `gophercloud-utils/clientconfig`, openstacksdk clouds.yaml spec, controller-runtime Conditions documentation, Keystone Application Credentials documentation. | +| III. Generated Code Protection (NON-NEGOTIABLE) | PASS | After CRD field additions, run `make generate` inside `k8s/migration/`. `zz_generated.deepcopy.go` and `deploy/installer.yaml` are never hand-edited. | +| IV. Test-First Development (NON-NEGOTIABLE) | PASS | Tasks will follow Red-Green-Refactor: failing tests → implementation. External dependencies (gophercloud, Keystone, Kubernetes API) mocked through interfaces. | +| V. Module Independence | PASS | Changes scoped to `k8s/migration/` (controller), `v2v-helper/` (microversion floor wiring), `ui/` (form). Each Go module gets `go mod tidy` separately. | +| VI. AI-Assisted Development (NON-NEGOTIABLE) | PASS | Following the CLAUDE.md AI rules: unit tests for new code, mocks for external systems, no hand-edited generated files. | +| VII. Code Reuse and Simplicity | PASS | Reusing `gophercloud/utils/clientconfig` rather than rolling a custom clouds.yaml parser. Refactors limited to those needed for testability. | + +No violations. Complexity Tracking section omitted. + +## Project Structure + +### Documentation (this feature) + +```text +specs/003-clouds-yaml-credentials/ +├── plan.md # This file +├── spec.md # Feature specification (clarified) +├── research.md # Phase 0 — design research consolidating decisions +├── data-model.md # Phase 1 — CRD and entity model +├── quickstart.md # Phase 1 — operator quickstart guide +├── contracts/ +│ ├── openstackcreds-crd.md # CRD schema delta (informative) +│ ├── conditions.md # Condition Types and Reason codes +│ └── secret-keys.md # Credential Secret key contract +└── checklists/ + └── requirements.md # Spec quality checklist (from /speckit-specify) +``` + +### Source Code (repository root) + +```text +k8s/migration/ # Controller module (PR #1 + PR #2) +├── api/v1alpha1/openstackcreds_types.go # CRD field additions: CloudName, status.Conditions +├── api/v1alpha1/zz_generated.deepcopy.go # Regenerated via `make generate` (DO NOT edit) +├── config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml # Regenerated CRD YAML +├── pkg/utils/credutils.go # Parser branching (clouds.yaml vs OS_*) +├── pkg/utils/credutils_test.go # NEW: parser branch unit tests +├── pkg/utils/clouds_yaml.go # NEW: clouds.yaml + AuthOptions wrapper around clientconfig +├── pkg/utils/clouds_yaml_test.go # NEW: clouds.yaml parsing unit tests +├── pkg/utils/conditions.go # NEW: Condition Type/Reason constants + helpers +├── pkg/utils/conditions_test.go # NEW: condition helpers tests +├── internal/controller/openstackcreds_controller.go # Secret watch wiring; Conditions reconcile +└── internal/controller/openstackcreds_controller_test.go # NEW/expanded reconcile + watch tests + +v2v-helper/ # Migration worker module (PR #1) +├── pkg/utils/openstackopsutils.go # Microversion floor wiring; honor config from clouds.yaml +└── pkg/utils/openstackopsutils_test.go # NEW/expanded: floor semantics tests + +ui/ # React frontend module (PR #3) +├── src/components/credentials/CloudsYamlForm.tsx # NEW: clouds.yaml paste/upload tab content +├── src/components/credentials/CloudsYamlForm.test.tsx # NEW: component tests +├── src/components/credentials/LegacyOpenStackForm.tsx # Existing per-field form (extracted if needed) +└── src/components/credentials/OpenstackCredsForm.tsx # Tab container (clouds.yaml default + legacy) + +docs/ # Astro documentation site +└── credentials.md (NEW or section update) # Operator runbook for clouds.yaml + App Credentials +``` + +**Structure Decision**: Three-module Kubernetes-native layout matching existing vjailbreak structure. PR #1 changes the controller (`k8s/migration/`) and migration worker (`v2v-helper/`). PR #2 is controller-only (validation surfacing for Application Credentials). PR #3 is UI-only (`ui/`). Documentation updates accompany whichever PR introduces the user-facing change. diff --git a/specs/003-clouds-yaml-credentials/quickstart.md b/specs/003-clouds-yaml-credentials/quickstart.md new file mode 100644 index 000000000..415fbd2f3 --- /dev/null +++ b/specs/003-clouds-yaml-credentials/quickstart.md @@ -0,0 +1,168 @@ +# Quickstart — clouds.yaml credentials for vjailbreak + +This guide walks an operator through setting up a vjailbreak migration using the `clouds.yaml` credential format with OpenStack Application Credentials. + +## Prerequisites + +- vjailbreak appliance installed and running on a release containing this feature +- Destination OpenStack with Keystone Queens (2018) or newer +- `openstack` CLI configured against the destination +- Permission to create roles and Application Credentials on the destination + +## Step 1 — Create a vjailbreak-scoped role (if not already present) + +```bash +openstack role create vjailbreak-migrator +``` + +Grant the role on the destination project to the user that will own the Application Credential: + +```bash +openstack role add --project \ + --user vjailbreak-migrator +openstack role add --project \ + --user member +``` + +The minimum role set vjailbreak requires for destination discovery is documented separately; for many deployments granting `member` plus a project-scoped `vjailbreak-migrator` (with the policy overrides for Cinder scheduler-stats and Nova hypervisor list) is sufficient. + +## Step 2 — Create the Application Credential + +```bash +openstack application credential create vjailbreak-svc \ + --role member \ + --role vjailbreak-migrator \ + --unrestricted=false \ + --expiration 2026-12-31T23:59:59Z \ + --description "vjailbreak migration appliance auth" +``` + +Record the `id` and `secret` from the output. The `secret` is shown once only. + +## Step 3 — Build clouds.yaml + +```yaml +# clouds.yaml +clouds: + destination: + auth_type: v3applicationcredential + auth: + auth_url: https://keystone.example.com:5000/v3 + application_credential_id: + application_credential_secret: + region_name: RegionOne + interface: public + compute_api_version: "2.95" + volume_api_version: "3.70" +``` + +## Step 4 — Create the Kubernetes Secret + +```bash +kubectl create secret generic openstack-creds-clouds \ + --namespace migration-system \ + --from-file=clouds.yaml=./clouds.yaml +``` + +## Step 5 — Create the OpenstackCreds resource + +```yaml +apiVersion: vjailbreak.k8s.pf9.io/v1alpha1 +kind: OpenstackCreds +metadata: + name: destination-creds + namespace: migration-system +spec: + secretRef: + name: openstack-creds-clouds + namespace: migration-system + cloudName: destination +``` + +```bash +kubectl apply -f openstackcreds.yaml +``` + +## Step 6 — Verify validation + +```bash +kubectl -n migration-system get openstackcreds destination-creds -o yaml +``` + +Expected `status.conditions`: + +- `CredentialsParsed=True` (Reason: `Parsed`) +- `CredentialsValidated=True` (Reason: `AuthSucceeded`) +- `RolesSufficient=True` (Reason: `RolesPresent`) +- `Expiring=False` (Reason: `NotApplicable` if not approaching expiration, or `Within30Days`/`Within7Days` if so) +- `Expired=False` (Reason: `Active`) + +A resource showing all positive conditions above is ready for migration use. + +## Step 7 — Rotate the Application Credential + +```bash +# Create a replacement Application Credential +openstack application credential create vjailbreak-svc-2 \ + --role member --role vjailbreak-migrator \ + --expiration 2027-06-30T23:59:59Z + +# Update the Secret in place with the new id/secret +kubectl create secret generic openstack-creds-clouds \ + --namespace migration-system \ + --from-file=clouds.yaml=./clouds.yaml \ + --dry-run=client -o yaml | kubectl apply -f - + +# Verify re-validation (Secret watch triggers it within seconds) +kubectl -n migration-system get openstackcreds destination-creds \ + -o jsonpath='{.status.conditions[?(@.type=="CredentialsValidated")]}' +``` + +## Step 8 — Revoke after migration completion + +```bash +openstack application credential delete vjailbreak-svc +``` + +The `OpenstackCreds` resource transitions to `CredentialsValidated=False, Reason=CredentialInvalidOrRevoked` on the next reconcile (triggered by the watch since the Application Credential is gone, but the auth attempt fails — verify with `kubectl get openstackcreds ... -o yaml`). + +## Multi-cloud clouds.yaml + +A single Secret can declare multiple clouds and back multiple `OpenstackCreds` resources: + +```yaml +# clouds.yaml in one shared Secret +clouds: + dc-paris: + auth_type: v3applicationcredential + auth: { ... } + region_name: paris + dc-frankfurt: + auth_type: v3applicationcredential + auth: { ... } + region_name: frankfurt +``` + +```yaml +# OpenstackCreds resources picking different entries +--- +apiVersion: vjailbreak.k8s.pf9.io/v1alpha1 +kind: OpenstackCreds +metadata: + name: paris-creds +spec: + secretRef: { name: openstack-multi-cloud } + cloudName: dc-paris +--- +apiVersion: vjailbreak.k8s.pf9.io/v1alpha1 +kind: OpenstackCreds +metadata: + name: frankfurt-creds +spec: + secretRef: { name: openstack-multi-cloud } + cloudName: dc-frankfurt +``` + +## UI path (after PR #3) + +Once the UI work in PR #3 is merged: navigate to the credential creation form, paste your `clouds.yaml` content into the default tab, select the cloud entry from the dropdown, confirm the "Application Credential" badge appears (when `auth_type: v3applicationcredential`), and submit. The UI writes the Secret and creates the `OpenstackCreds` resource for you. diff --git a/specs/003-clouds-yaml-credentials/research.md b/specs/003-clouds-yaml-credentials/research.md new file mode 100644 index 000000000..57afbc26f --- /dev/null +++ b/specs/003-clouds-yaml-credentials/research.md @@ -0,0 +1,140 @@ +# Phase 0 Research — clouds.yaml credentials + +## R-1: clouds.yaml parsing library + +**Decision**: Use `github.com/gophercloud/utils/openstack/clientconfig` exclusively. + +**Rationale**: +- Already part of the gophercloud ecosystem vendored by vjailbreak. +- Handles all standard `auth_type` values including `v3password`, `v3applicationcredential`, `v3oidcpassword`. +- Auto-discovers `auth_url`, region, interface, and identity API version from clouds.yaml. +- Builds `*gophercloud.AuthOptions` ready for `openstack.AuthenticatedClient(...)`. +- Honors `cacert`, `verify`, and `auth_type`-specific fields without custom code. + +**Alternatives considered**: +- Roll a custom YAML parser keyed on the `clouds:` top-level — rejected: duplicates `clientconfig` for no gain, risks divergence from OpenStack ecosystem semantics. +- Use `os-client-config` Python via subprocess — rejected: introduces a Python runtime dependency to a Go binary, harms testability and packaging. + +**Implementation note**: `clientconfig.AuthOptions(opts)` expects either env vars or a file on disk via `OS_CLIENT_CONFIG_FILE`. Since vjailbreak reads `clouds.yaml` from a Kubernetes Secret, write it to a tmpfile inside the controller pod (`/tmp/...`, mode `0600`, cleaned up after parse). Alternative: `clientconfig.GetCloudFromYAML(yamlBytes, cloudName)` if exposed — verify API surface during implementation. + +## R-2: Kubernetes Conditions API for OpenstackCreds + +**Decision**: Use a `[]metav1.Condition` slice with `meta.SetStatusCondition` from `k8s.io/apimachinery/pkg/api/meta`. + +**Rationale**: +- Standard Kubernetes convention for nuanced status reporting (Deployment, Pod, Ingress all use Conditions). +- controller-runtime provides built-in helpers for set/get/remove. +- `kubectl describe` and `kubectl get -o jsonpath` render Conditions natively. +- Supports `LastTransitionTime` and `ObservedGeneration` for drift detection. + +**Alternatives considered**: +- Extending the flat `OpenStackValidationStatus` field with new enumerated values — rejected: cannot represent multiple concurrent concerns (e.g., valid AND expiring). +- Keeping both flat fields and Conditions slice — rejected: doubles the surface area without identified back-compat consumers. + +**Migration**: Retire the existing flat fields. Existing `OpenstackCreds` resources upgraded from prior versions will have their flat status fields cleared on first reconcile after upgrade and the new Conditions populated. See `data-model.md` for the full Condition Type catalog and Reasons. + +## R-3: Controller-runtime Secret watch + +**Decision**: Use `controller-runtime` `Watches(&corev1.Secret{}, handler.EnqueueRequestsFromMapFunc(...))` in the `OpenstackCreds` controller setup, mapping Secret events to all `OpenstackCreds` resources whose `SecretRef` points to that Secret. + +**Rationale**: +- The same controller can watch multiple types; no separate goroutine required. +- Informer cache keeps overhead minimal — Secret list/watch happens once per controller, not per resource. +- The map function naturally supports the many-to-one relationship (multiple `OpenstackCreds` referencing one Secret per FR-016). +- Re-reconciliation latency in the sub-second range under typical load. + +**Alternatives considered**: +- Periodic resync only (no Secret watch) — rejected per spec clarification Q4: rotation observation latency too high. +- Field-indexer (use a `SecretRef.Name` index) for efficient lookups — accepted as a secondary optimization within the controller implementation; not a separate alternative. + +## R-4: Application Credentials auth flow + +**Decision**: Rely on `clientconfig` to construct `gophercloud.AuthOptions` from clouds.yaml's `auth_type: v3applicationcredential`. The resulting `AuthOptions` has `ApplicationCredentialID` and `ApplicationCredentialSecret` set; gophercloud's `tokens.Create` issues the correct token request automatically. + +**Rationale**: +- Application Credential auth is a standard Keystone v3 flow; no project scope in the token request (scope is bound at credential creation time). +- gophercloud handles the auth shape transparently when `AuthOptions` is constructed correctly. +- No new auth code needed in vjailbreak. + +**Validation surfacing**: +- 401 from token endpoint → `Condition CredentialsValidated=False, Reason=CredentialInvalidOrRevoked`. +- 403 from a downstream service → `Condition RolesSufficient=False, Reason=InsufficientRoles` (extract role names from the error body if Keystone provides them). +- Application Credential `expires_at` field — read via `applicationcredentials.Get(...)` after successful auth to drive the `Expiring` / `Expired` conditions. + +**Minimum Keystone version**: Queens (2018). Document in the operator credentials guide as a prerequisite. + +## R-5: Microversion floor semantics + +**Decision**: Implement a `MicroversionFloor(configValue, hardcodedValue string) string` helper that returns the higher of the two values via semantic comparison of the `major.minor` form. The function returns `hardcodedValue` when `configValue` is empty. + +**Rationale**: +- Keeps the floor logic in one tested helper. +- Comparator must handle the `latest` sentinel (treat as greater than any specific version). +- Service-specific hardcoded floors apply only at the call site that hardcodes a microversion; everywhere else the configured value applies directly. + +**Alternatives considered**: +- Apply configured value unconditionally (let it override hardcoded down too) — rejected: would re-break the multi-attach attach call if a misconfigured `clouds.yaml` declared `compute_api_version: 2.1`. +- Apply only at construction time, ignore per-call hardcoded values — rejected: per-call values exist because some operations require a higher microversion than the default service client; ignoring them re-introduces the v0.4.5 multi-attach bug. + +**Application points**: +- Constructor (e.g., `NewComputeClient`): set `Microversion = MicroversionFloor(clouds["compute_api_version"], "")` — typically empty hardcoded value at construction. +- Per-call hot paths (e.g., `AttachVolumeToVM`): set `Microversion = MicroversionFloor(clouds["compute_api_version"], "2.60")` — hardcoded operation-specific floor. + +## R-6: Client-side YAML parsing in the UI + +**Decision**: Add `js-yaml` (or already-bundled equivalent — verify) for client-side `clouds.yaml` parsing in the credential form. + +**Rationale**: +- `js-yaml` is the canonical Node/browser YAML library; small bundle size (~30-50 KB minified), schema-safe by default (no arbitrary code execution). +- Client-side parsing allows inline error reporting before submission and immediate `cloudName` dropdown population (FR-013). +- The parsed object can be inspected for `auth_type` to drive the "Application Credential" badge in the form (FR-014). + +**Alternatives considered**: +- Server-side parse (round-trip to API server) — rejected: extra latency for trivial validation, worse UX on parse errors. +- No client-side parse, accept any string — rejected: violates FR-013 (cloud-name dropdown) and FR-014 (auth-method badge). + +**Bundle impact**: Acceptable per spec Assumption. Confirm UI build pipeline (Vite) handles tree-shaking so only `js-yaml.load` is shipped, not the full library surface. + +## R-7: Upgrade and back-compat behavior + +**Decision**: +- Existing `OpenstackCreds` resources using OS_* keys: behavior unchanged. The controller's parser branches on the presence of `clouds.yaml` in the referenced Secret. +- Existing resources' flat status fields: on first reconcile after upgrade, the controller writes the equivalent Conditions and clears the flat fields. +- Existing resources continue to validate exactly as before; new Conditions surface the same information operators previously read from the flat fields, plus the new Expiring / Expired / RolesSufficient states once Application Credentials are introduced (PR #2). + +**Rationale**: +- Constitution V (Module Independence) and spec FR-002 require no operator action on upgrade. +- Clearing the flat fields prevents stale status from confusing operators after the Conditions API takes over. + +**One-shot migration tracking** (optional, plan-level decision): a transient `MigratedFromFlatStatus=True` Condition (Reason: `Upgrade`, set once) lets operators identify resources where the controller performed the flat-to-Conditions transition. This Condition can be cleared after a configurable number of reconciles or version bumps. Defer the final decision on whether to include this tracking to PR #1 implementation review. + +## R-8: Validation cadence + +**Decision**: Re-validate on each Secret-watch trigger (event-driven, near-real-time) and on a periodic interval (every 1 hour) as a backstop for time-sensitive Conditions (`Expiring`, `Expired`). + +**Rationale**: +- Spec FR-009 requires a 30-day expiration warning; this is meaningful only when the controller periodically re-evaluates the App Cred state even if the Secret is not changing. +- 1-hour cadence is sufficient for day-level granularity warnings; lower cadence introduces unnecessary Keystone load (single-digit auth attempts per hour per `OpenstackCreds` resource). +- Combined event + periodic gives both prompt rotation observation and freshness of time-sensitive Conditions. + +**Alternatives considered**: +- Event-driven only — rejected: misses idle expiration cases (App Cred sitting unused expires; status never updates). +- Periodic only (no Secret watch) — rejected: rotation observation latency too high (covered by Q4 clarification). + +**Configurability**: The 1-hour interval should be a controller flag or environment variable for environments with tighter or looser SLA needs. Default: 1 hour. + +## R-9: Log redaction and observability + +**Decision**: Never log Application Credential `application_credential_secret`, user `password`, or any other Secret-sourced credential values in controller logs, Kubernetes Events, or `OpenstackCreds.status.conditions` messages. + +**Rationale**: +- Security baseline for any credential-handling controller. +- Air-gapped and regulated environments (typical vjailbreak deployment posture) require credentials to remain in the Secret store, not visible in log aggregators. + +**Implementation**: +- All log statements touching credential structures must reference identifiers (cloud name, auth URL, project) and never the secret material. +- Add unit tests asserting that no secret value appears in any log line emitted during reconcile and validation paths. +- Condition messages must use generic phrasings ("authentication failed", "credential invalid or revoked") rather than echoing OpenStack error responses that may carry token fragments. + +**Alternatives considered**: +- Implement opt-in verbose logging behind a flag — rejected: makes accidental leak too easy. diff --git a/specs/003-clouds-yaml-credentials/spec.md b/specs/003-clouds-yaml-credentials/spec.md new file mode 100644 index 000000000..47021ab98 --- /dev/null +++ b/specs/003-clouds-yaml-credentials/spec.md @@ -0,0 +1,134 @@ +# Feature Specification: clouds.yaml credentials for OpenstackCreds + +**Feature Branch**: `1952-clouds-yaml-credentials` +**Created**: 2026-05-18 +**Status**: Draft +**Input**: User description: "Introduce clouds.yaml as the credential format for OpenstackCreds CRD, with full back-compat for the existing per-field OS_* environment-variable approach. Three PRs decompose from this feature: (1) backend parser and CRD field plus microversion floor wiring from clouds.yaml's compute_api_version/volume_api_version into service clients, (2) OpenStack Application Credentials support via auth_type v3applicationcredential carried inside clouds.yaml, (3) UI input mode for clouds.yaml as the default credential entry path." + +## Clarifications + +### Session 2026-05-18 + +- Q: Can a single credential Secret containing a multi-cloud `clouds.yaml` back multiple `OpenstackCreds` resources, each selecting a different cloud entry via `cloudName`? → A: Yes for `clouds.yaml`-backed Secrets; legacy OS_*-backed Secrets remain 1:1 (back-compat constraint). +- Q: When the `OpenstackCreds` resource needs to report multiple concurrent status concerns (e.g., valid right now and expiring within 30 days), how granular should the status reporting be? → A: Kubernetes-style `conditions` slice with typed entries; multiple concurrent conditions reportable. Retire the existing flat `OpenStackValidationStatus` / `OpenStackValidationMessage` fields. +- Q: Should the operator-configurable microversion floor apply only to services where vjailbreak currently hardcodes a value (compute, volume), or to every OpenStack service vjailbreak constructs a client for? → A: Apply broadly — to every OpenStack service vjailbreak constructs a client for (compute, volume, image, network, identity). +- Q: How does vjailbreak react when the credential Secret content changes (e.g., during Application Credential rotation)? → A: Automatic via watch — the controller watches referenced Secrets and re-reconciles affected `OpenstackCreds` resources within seconds of any change. + +## User Scenarios & Testing *(mandatory)* + +### User Story 1 — Use clouds.yaml as the credential source (Priority: P1) + +An operator preparing a vjailbreak migration already maintains a `clouds.yaml` file for their destination OpenStack cloud (used by the `openstack` CLI, OpenStack SDK, and other tooling). Today they must re-flatten that configuration into a parallel set of per-field Kubernetes Secret keys (`OS_AUTH_URL`, `OS_USERNAME`, `OS_PASSWORD`, `OS_DOMAIN_NAME`, `OS_REGION_NAME`, `OS_TENANT_NAME`, `OS_INTERFACE`, `OS_IDENTITY_API_VERSION`). With this story complete, the operator places their `clouds.yaml` content directly into the credential Secret, names which cloud entry to use, and the migration proceeds. + +**Why this priority**: Foundational. Stories 2 and 3 build on this story's parser. Eliminates the most common source of credential drift for operators with multi-tool OpenStack workflows. + +**Independent Test**: An operator creates a credential Secret containing a `clouds.yaml` key and a `cloudName` field on the `OpenstackCreds` resource, then triggers a migration. The migration authenticates and completes successfully against the destination cloud. A separate operator on a deployment using the existing OS_* keys upgrades vjailbreak and observes no behavior change. + +**Acceptance Scenarios**: + +1. **Given** a credential Secret containing a valid `clouds.yaml` with a single cloud entry, **When** an `OpenstackCreds` resource references it with `cloudName` set, **Then** vjailbreak authenticates successfully and the resource reports a healthy validation status. +2. **Given** a credential Secret containing both `clouds.yaml` and legacy OS_* keys, **When** the `OpenstackCreds` resource is reconciled, **Then** `clouds.yaml` takes precedence and the legacy keys are ignored without error. +3. **Given** a credential Secret containing only legacy OS_* keys (existing deployment pattern), **When** the `OpenstackCreds` resource is reconciled, **Then** behavior is unchanged from prior vjailbreak versions. +4. **Given** a `clouds.yaml` that specifies `compute_api_version: 2.65`, **When** vjailbreak performs a volume attach operation that would internally request microversion 2.60, **Then** the actual request uses microversion 2.65 (the operator-configured value, since it is higher). +5. **Given** a `clouds.yaml` containing multiple cloud entries and no `cloudName` set on the `OpenstackCreds` resource, **When** the resource is reconciled, **Then** the resource reports a validation error naming the available cloud entries. + +--- + +### User Story 2 — Authenticate via OpenStack Application Credentials (Priority: P2) + +An operator running production migrations wants to avoid embedding a long-lived user password in a Kubernetes Secret. They create an OpenStack Application Credential scoped to only the roles vjailbreak requires (`member` plus a custom migration role), set an expiration date covering the migration window, and place the credential ID and secret in `clouds.yaml` with `auth_type: v3applicationcredential`. After the migration, they revoke the credential without affecting the underlying user account. + +**Why this priority**: Security-meaningful improvement. Builds on Story 1's parser. Optional for less regulated environments but required for production-grade or air-gapped/regulated deployments. + +**Independent Test**: An operator creates an Application Credential on the destination cloud, populates a `clouds.yaml` with `auth_type: v3applicationcredential`, triggers a migration, and confirms it completes successfully. A second test revokes the credential mid-validation; vjailbreak reports a clear, actionable error. + +**Acceptance Scenarios**: + +1. **Given** a `clouds.yaml` with `auth_type: v3applicationcredential` and a valid Application Credential ID and secret, **When** vjailbreak validates the credentials, **Then** authentication succeeds without requiring a username or user password. +2. **Given** an Application Credential whose `expires_at` is within 30 days of the validation time, **When** vjailbreak validates the credentials, **Then** validation succeeds and an expiration-warning condition is surfaced on the `OpenstackCreds` resource. +3. **Given** an Application Credential that has been revoked, **When** vjailbreak validates the credentials, **Then** validation fails with an error message stating that the Application Credential is revoked or its secret is invalid. +4. **Given** an Application Credential that does not carry the role required to call a Cinder scheduler-stats endpoint, **When** vjailbreak attempts the destination storage discovery step, **Then** the resulting error message identifies missing role permissions and references the Application Credential rather than a user account. + +--- + +### User Story 3 — Enter clouds.yaml through the web UI (Priority: P3) + +An operator who prefers the web UI over direct Kubernetes Secret editing wants to enter their `clouds.yaml` in the credential form rather than typing each OS_* field. The form accepts pasted YAML or an uploaded file, parses it client-side, lets them select which cloud entry to use when more than one is defined, and submits the credential without needing CLI access to the cluster. + +**Why this priority**: UX improvement that broadens access to the new credential format. CLI-driven workflows are already complete after Story 1. Story 3 is independent of Story 2 — UI users gain access to Application Credentials automatically because the new auth method flows through `clouds.yaml`. + +**Independent Test**: An operator opens the credential creation form in the web UI, pastes a valid `clouds.yaml`, selects a cloud entry from the dropdown that populates after parsing, submits, and observes the resulting `OpenstackCreds` resource and credential Secret in the cluster contain the expected values. + +**Acceptance Scenarios**: + +1. **Given** the operator opens the credential creation form, **When** the form loads, **Then** the `clouds.yaml` input tab is shown by default and a legacy individual-fields tab is available as a secondary option. +2. **Given** the operator pastes a valid `clouds.yaml` with multiple cloud entries, **When** the parse completes, **Then** a cloud-name dropdown is populated with the entry keys and the operator can pick one. +3. **Given** the operator pastes invalid YAML, **When** the form attempts to parse it, **Then** the parse error is shown inline next to the input with enough detail (e.g., line/column) to locate and correct the problem. +4. **Given** the operator submits a `clouds.yaml` containing `auth_type: v3applicationcredential`, **When** the form renders the post-parse summary, **Then** an "Application Credential" indicator is shown so the operator can confirm the auth method before submission. + +--- + +### Edge Cases + +- **Conflicting credential representations**: A Secret contains both `clouds.yaml` and OS_* keys. `clouds.yaml` takes precedence; legacy keys are silently ignored on this reconciliation pass. +- **Ambiguous cloud selection**: A `clouds.yaml` defines multiple clouds and `cloudName` is not set. The `OpenstackCreds` validation status reports an error naming the available entries instead of guessing. +- **Microversion floor below hardcoded need**: A `clouds.yaml` specifies a compute microversion lower than what an internal operation requires. The internal hardcoded value applies for that operation; the operator's configured floor applies only when higher. +- **Application Credential expired before migration**: Validation fails immediately with an expiration date in the error message; the migration does not start. +- **Application Credential expires during migration**: vjailbreak surfaces the OpenStack-provided auth error from the failing API call; the migration aborts with a clear cause attributed to credential expiration. +- **YAML upload too large**: UI rejects files above a reasonable size threshold (e.g., 1 MB) with a clear message; clouds.yaml files in practice are well under this size. +- **clouds.yaml references an external cacert file path**: The credential Secret must include the certificate inline (e.g., via `cacert: |` block); on-disk paths in the operator's environment are not resolvable inside the vjailbreak controller pod. This limitation is documented and surfaced as a validation hint if a path-style cacert is detected. +- **Same Secret referenced by multiple OpenstackCreds resources**: When two or more `OpenstackCreds` resources reference the same `clouds.yaml`-backed Secret with different `cloudName` values, each resource validates and operates against its own selected cloud entry independently. A Secret update is observed by all referencing resources via the controller's Secret watch, triggering re-reconciliation for each. +- **Credential Secret changes during an active migration**: A new credential Secret content (e.g., rotated Application Credential ID and secret) is detected by the controller's Secret watch. Re-validation runs against the new content. Any migration already in flight continues using the auth token it acquired at start (no mid-flight token invalidation); subsequent migrations and the next validation pass use the rotated credential. + +## Requirements *(mandatory)* + +### Functional Requirements + +- **FR-001**: The system MUST accept credentials in standard OpenStack `clouds.yaml` format placed in the credential Secret under a `clouds.yaml` key. +- **FR-002**: The system MUST continue to accept credentials supplied via the existing OS_* keys for back-compatibility, with no required action by operators on existing deployments. +- **FR-003**: When `clouds.yaml` is present in the credential Secret, the system MUST use it as the credential source and ignore any OS_* keys in the same Secret. +- **FR-004**: The `OpenstackCreds` resource MUST expose a `cloudName` field selecting which cloud entry to use from a `clouds.yaml` containing multiple entries. +- **FR-005**: When `clouds.yaml` contains a single cloud entry and `cloudName` is unset, the system MUST use that entry without requiring an explicit `cloudName` value. +- **FR-006**: When `clouds.yaml` contains multiple cloud entries and `cloudName` is unset, the system MUST report a validation error listing the available cloud entries. +- **FR-007**: The system MUST support authenticating to the destination cloud via OpenStack Application Credentials, declared in `clouds.yaml` using `auth_type: v3applicationcredential` with `application_credential_id` and `application_credential_secret`. +- **FR-008**: The system MUST surface Application-Credential-specific error conditions during validation, distinguishing between an invalid or revoked credential, an expired credential, and a credential missing required roles. +- **FR-009**: The system MUST emit a warning condition on the `OpenstackCreds` resource when an Application Credential's `expires_at` is within 30 days of the validation time, without failing validation. +- **FR-010**: The system MUST honor per-service API version values from `clouds.yaml` (including `compute_api_version`, `volume_api_version`, `image_api_version`, `network_api_version`, and `identity_api_version`) as an operator-configured floor on every OpenStack service client the system constructs. When the configured version is higher than the internal hardcoded value for a given operation, the configured value is used; when the configured value is lower or absent, the internal hardcoded value (or the service-default value where no hardcoded value exists) is used. +- **FR-011**: The web UI MUST present a credential input mode that accepts `clouds.yaml` content via paste or file upload, parses it client-side, and reports parse errors inline. +- **FR-012**: The web UI MUST default to the `clouds.yaml` credential input mode and offer the legacy per-field input mode as a secondary, non-default option. +- **FR-013**: After parsing `clouds.yaml`, the web UI MUST populate a cloud-name selector from the entries defined in the YAML. +- **FR-014**: After parsing `clouds.yaml`, the web UI MUST display which auth method is configured (password versus Application Credential) so the operator can confirm before submission. +- **FR-015**: The system MUST mask Application Credential secrets and user passwords from any UI display after parse, in the same way existing password fields are handled today. +- **FR-016**: Multiple `OpenstackCreds` resources MAY reference the same credential Secret when that Secret contains `clouds.yaml`; each `OpenstackCreds` resource independently selects its cloud entry via `cloudName`. Credential Secrets containing only legacy OS_* keys MUST continue to be treated as a 1:1 binding with their `OpenstackCreds` resource (preserving existing back-compat semantics). +- **FR-017**: The `OpenstackCreds` resource MUST report its validation state via a `status.conditions` slice using the standard Kubernetes Condition shape (`Type`, `Status`, `Reason`, `Message`, `LastTransitionTime`). Multiple concurrent conditions MAY be present on a single resource. The previously flat `OpenStackValidationStatus` and `OpenStackValidationMessage` status fields MUST be retired in favor of this Conditions API. +- **FR-018**: The controller MUST watch every credential Secret referenced by an `OpenstackCreds` resource and re-reconcile the affected `OpenstackCreds` resources when their referenced Secret content changes. The watch MUST trigger re-validation against the new content without requiring operator action (no annotation bump, no controller restart). Already-running migrations MUST NOT be aborted by a credential Secret change observed during their execution; the change applies to subsequent validation passes and new migrations. + +### Key Entities + +- **OpenstackCreds resource**: The Kubernetes Custom Resource representing destination cloud credentials, their reference to a Kubernetes Secret, the selected cloud entry, and the current validation state. Validation state is reported as a `status.conditions` slice; multiple concurrent conditions may be present (for example, a credential reported as valid and simultaneously approaching expiration). +- **Credential Secret**: A Kubernetes Secret containing either a single `clouds.yaml` key (new path) or a set of OS_* keys (legacy path). The two are mutually preferred: `clouds.yaml` takes precedence when both are present. A `clouds.yaml`-backed Secret may be referenced by multiple `OpenstackCreds` resources concurrently (each selecting its own cloud entry); a legacy OS_*-backed Secret retains its existing 1:1 binding with a single `OpenstackCreds` resource. +- **Cloud entry**: A top-level key in `clouds.yaml` identifying a named cloud configuration. The `cloudName` field on `OpenstackCreds` selects which entry to consume. +- **Application Credential**: An OpenStack Keystone object consisting of an ID, a secret, an optional expiration, and a subset of the issuing user's roles. Used as an alternative to user password authentication. +- **Microversion configuration**: Per-service API version values (`compute_api_version`, `volume_api_version`, etc.) carried inside `clouds.yaml`, interpreted by the system as operator-configurable floors over internal hardcoded values. + +## Success Criteria *(mandatory)* + +### Measurable Outcomes + +- **SC-001**: An operator with an existing `clouds.yaml` can configure vjailbreak credentials without re-flattening any field, eliminating one full configuration step from the operator onboarding sequence. +- **SC-002**: 100% of existing deployments using OS_* credential keys continue to function without changes following the upgrade to a vjailbreak release containing this feature. +- **SC-003**: An operator can change the destination compute or volume API microversion floor used by vjailbreak by editing a single value in `clouds.yaml` and applying the Secret, with no code changes and no controller restart required. +- **SC-004**: An operator can perform a migration using an Application Credential that grants only the roles necessary for the migration, and revoke that credential after migration completes without modifying any user account. +- **SC-005**: An operator can configure vjailbreak credentials via the web UI by pasting a `clouds.yaml` and selecting a cloud entry, without opening a terminal or editing a Kubernetes Secret directly. +- **SC-006**: An operator pasting an invalid `clouds.yaml` into the UI can identify the offending line within a single read of the inline error message and correct it without external tooling. +- **SC-007**: Credential validation reports an Application Credential expiration warning at least 30 days before expiration, giving operators time to issue a replacement without disruption to scheduled migrations. + +## Assumptions + +- Destination OpenStack clouds support Application Credentials. This feature was introduced in Keystone Queens (2018); deployments older than Queens are not in scope for this feature. +- The `clouds.yaml` format used is the same one understood by `python-openstackclient`, `openstacksdk`, and other standard OpenStack tooling. No vjailbreak-specific extensions to the format are introduced. +- Operators with existing OS_* credential Secrets retain those Secrets unchanged through any release containing this feature; migration to `clouds.yaml` is opt-in, not required. +- Application Credentials are created by operators using existing OpenStack tooling (CLI or API) outside of vjailbreak. The system consumes them; it does not create them. +- `clouds.yaml` values containing `cacert: |` inline certificate content are usable inside the vjailbreak controller pod. References to on-disk certificate paths in the operator's local environment are not resolvable inside the controller and are out of scope. +- The web UI's client-side YAML parsing introduces a small additional JavaScript bundle dependency. The trade-off in bundle size is acceptable in exchange for the user-experience improvement and is consistent with the project's existing approach to UI dependencies. +- Existing role-scoping requirements for destination OpenStack operations (e.g., admin-equivalent permissions for Cinder scheduler-stats and Nova hypervisor discovery during the mapping phase) are unchanged by this feature. Application Credentials must be issued with sufficient roles to cover those operations. diff --git a/specs/003-clouds-yaml-credentials/tasks.md b/specs/003-clouds-yaml-credentials/tasks.md new file mode 100644 index 000000000..83ebdbc6d --- /dev/null +++ b/specs/003-clouds-yaml-credentials/tasks.md @@ -0,0 +1,266 @@ +--- + +description: "Task list for clouds.yaml credentials feature implementation" +--- + +# Tasks: clouds.yaml credentials for OpenstackCreds + +**Input**: Design documents from `/specs/003-clouds-yaml-credentials/` +**Prerequisites**: plan.md, spec.md, research.md, data-model.md, contracts/ + +**Tests**: MANDATORY per constitution principle IV (Test-First Development, NON-NEGOTIABLE) and `CLAUDE.md` ("ALWAYS write unit tests for any new code written by Claude"). All implementation tasks are preceded by a corresponding test task. Tests MUST be written first and observed to FAIL before implementation begins. + +**Organization**: Tasks are grouped by user story. Each user story corresponds to one PR: + +- **PR #1** = User Story 1 (clouds.yaml backend, foundational) +- **PR #2** = User Story 2 (Application Credentials) +- **PR #3** = User Story 3 (UI) + +## Format: `[ID] [P?] [Story] Description` + +- **[P]**: Can run in parallel (different files, no dependencies on incomplete tasks) +- **[Story]**: `US1`, `US2`, `US3` — user story mapping. Setup, Foundational, and Polish tasks have no story label. +- Each task references exact file paths. + +## Path Conventions + +Three affected modules in the existing vjailbreak layout: + +- `k8s/migration/` — controller (Go module) +- `v2v-helper/` — migration worker (Go module, CGO required) +- `ui/` — React/TypeScript frontend + +--- + +## Phase 1: Setup (Shared Infrastructure) + +**Purpose**: One-time contributor environment preparation. Lives on PR #1's branch. + +- [ ] T001 Run `make setup-hooks` from repo root to activate pre-commit validation (constitution requirement, CLAUDE.md Git Workflow rule) +- [ ] T002 Verify local Go toolchain: Go 1.21+, `CGO_ENABLED=1 GOOS=linux GOARCH=amd64` (required for `v2v-helper` tests) — fall back to Docker/Linux VM on macOS per CLAUDE.md +- [ ] T003 [P] Confirm `github.com/gophercloud/utils` is available in `k8s/migration/go.mod`; if missing, add via `cd k8s/migration && go get github.com/gophercloud/utils@latest && go mod tidy` +- [ ] T004 [P] Confirm `github.com/gophercloud/utils` is available in `v2v-helper/go.mod`; `cd v2v-helper && go mod tidy` + +--- + +## Phase 2: Foundational (Blocking Prerequisites) + +**Purpose**: CRD schema changes that block all user stories. Lives on PR #1's branch (these changes ship in PR #1). + +**⚠️ CRITICAL**: All user stories depend on these changes. Never hand-edit the generated files; always run `make generate` (constitution principle III, NON-NEGOTIABLE). + +- [ ] T005 Add `CloudName string \`json:"cloudName,omitempty"\`` field to `OpenstackCredsSpec` in `k8s/migration/api/v1alpha1/openstackcreds_types.go` with godoc explaining the multi-entry clouds.yaml selection semantics (FR-004, FR-005, FR-006) +- [ ] T006 Replace `OpenStackValidationStatus` and `OpenStackValidationMessage` fields in `OpenstackCredsStatus` with `Conditions []metav1.Condition \`json:"conditions,omitempty"\`` in `k8s/migration/api/v1alpha1/openstackcreds_types.go`; add `+listType=map` and `+listMapKey=type` kubebuilder markers (FR-017) +- [ ] T007 Run `make generate` inside `k8s/migration/` to regenerate `zz_generated.deepcopy.go` and `config/crd/bases/vjailbreak.k8s.pf9.io_openstackcreds.yaml`; DO NOT hand-edit either file (constitution III) +- [ ] T008 Run `make generate-manifests` from repo root to regenerate `deploy/installer.yaml`; verify `cd k8s/migration && make test` still passes on the unchanged baseline behavior (smoke check) + +**Checkpoint**: CRD schema in place. User Story 1 implementation can now begin on PR #1's branch. + +--- + +## Phase 3: User Story 1 — Use clouds.yaml as the credential source (Priority: P1) 🎯 MVP + +**PR**: #1 (branch `feature/` once filed, e.g., `feature/1944` if that's the parent issue number) + +**Goal**: Operator can place `clouds.yaml` content in the credential Secret and reference it via `OpenstackCreds.cloudName`. Existing OS_* Secrets continue to work unchanged. Microversion config from `clouds.yaml` flows through to service clients as a floor over hardcoded values. Status reported via Conditions; Secret changes observed within seconds via controller watch. + +**Independent Test**: Create a Secret with a single-entry `clouds.yaml` and a matching `OpenstackCreds` resource with `cloudName: destination`. Run a migration against the destination cloud and confirm authentication succeeds and Conditions reflect a healthy state. Separately, create an OS_*-only Secret and observe identical behavior to the prior release. + +### Tests for User Story 1 (write first; must FAIL before implementation) + +- [ ] T009 [P] [US1] Write unit tests for `clouds.yaml` parsing wrapper in `k8s/migration/pkg/utils/clouds_yaml_test.go`: valid single-entry YAML, valid multi-entry with `cloudName` set, ambiguous multi-entry without `cloudName`, invalid YAML, missing required fields, `cacert` path detection +- [ ] T010 [P] [US1] Write unit tests for Conditions helpers (`SetCondition`, Reason mapping) in `k8s/migration/pkg/utils/conditions_test.go` per `contracts/conditions.md` +- [ ] T011 [P] [US1] Write unit tests for credentials parser branching in `k8s/migration/pkg/utils/credutils_test.go`: clouds.yaml-only Secret, OS_*-only Secret, both present (clouds.yaml wins), neither present (error) +- [ ] T012 [P] [US1] Write unit tests for `MicroversionFloor(configValue, hardcodedValue string) string` in `v2v-helper/pkg/utils/microversion_test.go`: config empty → hardcoded; config lower → hardcoded; config higher → config; `latest` handling; non-numeric malformed → error path +- [ ] T013 [P] [US1] Write reconciler tests in `k8s/migration/internal/controller/openstackcreds_controller_test.go` covering: + - clouds.yaml-mode reconcile populates Conditions per `contracts/conditions.md` + - OS_*-mode reconcile populates equivalent Conditions (back-compat path) + - Secret update triggers re-reconciliation via the controller's Secret watch + - Two `OpenstackCreds` resources referencing the same `clouds.yaml`-backed Secret with different `cloudName` values reconcile independently and both observe a Secret update (FR-016) + - Flat status fields cleared on first post-upgrade reconcile (R-7) + - `Reconcile` returns `Result{RequeueAfter: }` matching the configured periodic re-validation interval (default 1 hour, R-8) +- [ ] T014 [P] [US1] Write log-redaction tests in `k8s/migration/pkg/utils/credutils_test.go` asserting that `password`, `application_credential_secret`, and `cacert` private key material do NOT appear in any log line emitted during parse and validate paths (R-9) +- [ ] T015 [US1] Confirm all new tests FAIL by running `cd k8s/migration && make test` and `make test-v2v-helper` (TDD red phase per constitution IV) + +### Implementation for User Story 1 + +- [ ] T016 [P] [US1] Implement Condition Type and Reason constants in `k8s/migration/pkg/utils/conditions.go` per `contracts/conditions.md`; expose helper functions for setting common condition patterns (e.g., `SetCredentialsParsed`, `SetCredentialsValidated`) +- [ ] T017 [P] [US1] Implement `MicroversionFloor(configValue, hardcodedValue string) string` in `v2v-helper/pkg/utils/microversion.go` per research R-5 +- [ ] T018 [US1] Implement clouds.yaml parsing wrapper in `k8s/migration/pkg/utils/clouds_yaml.go`: read Secret data, write tmpfile if needed for `clientconfig.AuthOptions`, build `*gophercloud.AuthOptions` for selected `cloudName`, return microversion map from per-service `*_api_version` keys +- [ ] T019 [US1] Refactor `k8s/migration/pkg/utils/credutils.go` `ValidateAndGetProviderClient` to branch on Secret content: `clouds.yaml` present → use new wrapper; else → existing OS_* path unchanged (logic-preserving refactor permitted per constitution VII) +- [ ] T020 [US1] Wire microversion floor into `v2v-helper/pkg/utils/openstackopsutils.go`: every service client constructor (`NewComputeClient`, `NewBlockStorageClient`, etc.) sets `Microversion = MicroversionFloor(cfg[svc+"_api_version"], "")`; per-call hot paths (`AttachVolumeToVM` and others previously hardcoded) use `Microversion = MicroversionFloor(cfg["compute_api_version"], hardcodedValue)` per research R-5 +- [ ] T021 [US1] Update `k8s/migration/internal/controller/openstackcreds_controller.go` to: + - Add `Watches(&corev1.Secret{}, handler.EnqueueRequestsFromMapFunc(...))` mapping Secret events to all `OpenstackCreds` referencing that Secret (FR-018, research R-3) + - Populate `status.Conditions` per reconcile pass per `contracts/conditions.md` + - On first reconcile observing legacy `OpenStackValidationStatus`/`Message` populated, clear them after writing equivalent Conditions (R-7) + - Schedule a periodic 1-hour requeue for time-sensitive Conditions (Expiring/Expired) via `RequeueAfter` (R-8) — relevant for US2 but ship the requeue plumbing here +- [ ] T022 [US1] Run `cd k8s/migration && make test` and `make test-v2v-helper`; verify all tests pass (TDD green phase). Address any failures by adjusting implementation, not test expectations +- [ ] T023 [US1] Update operator-facing documentation: + - Add a "clouds.yaml credentials" section to `README.md` linking to the new operator guide + - Create or update `docs/credentials.md` based on `quickstart.md` content (omit App Credential specifics; those land in US2) + +**Checkpoint (PR #1 ready)**: User Story 1 is fully functional and testable. PR #1 can be pushed and opened for review. + +--- + +## Phase 4: User Story 2 — Authenticate via OpenStack Application Credentials (Priority: P2) + +**PR**: #2 (branch `feature/`, opened after PR #1 merges) + +**Goal**: Operator can declare `auth_type: v3applicationcredential` in `clouds.yaml` and authenticate vjailbreak via an OpenStack Application Credential. Validation distinguishes invalid/revoked, expired, and insufficient-role conditions. A 30-day expiration warning appears as a Condition before expiry. + +**Independent Test**: Create an Application Credential on the destination cloud, embed its ID and secret in `clouds.yaml`, observe `CredentialsValidated=True` on the resource, run a migration. Revoke the credential and observe `CredentialsValidated=False, Reason=CredentialInvalidOrRevoked` on next reconcile. Set an expiration within 30 days and observe `Expiring=True, Reason=Within30Days`. + +### Tests for User Story 2 (write first; must FAIL before implementation) + +- [ ] T024 [P] [US2] Write unit tests for Application Credential auth flow in `k8s/migration/pkg/utils/clouds_yaml_test.go`: `auth_type: v3applicationcredential` produces `AuthOptions` with `ApplicationCredentialID`/`Secret` set (no username/password); `auth_type: v3password` unchanged +- [ ] T025 [P] [US2] Write unit tests for App Cred expiration evaluation in `k8s/migration/pkg/utils/credutils_test.go`: `expires_at` in past → `Expired=True`; within 7 days → `Expiring=True, Reason=Within7Days`; within 30 days → `Expiring=True, Reason=Within30Days`; >30 days → `Expiring=False`; not an App Cred → both `NotApplicable` +- [ ] T026 [P] [US2] Write unit tests for Keystone error mapping in `k8s/migration/pkg/utils/credutils_test.go`: 401 → `CredentialInvalidOrRevoked`; 403 from a downstream service → `InsufficientRoles` with role list extracted from error body where available +- [ ] T027 [US2] Confirm all new tests FAIL via `cd k8s/migration && make test` (TDD red phase) + +### Implementation for User Story 2 + +- [ ] T028 [US2] Extend `k8s/migration/pkg/utils/credutils.go` to call `applicationcredentials.Get(...)` after successful auth (when auth_type is `v3applicationcredential`) and surface `Expiring`/`Expired` conditions per `contracts/conditions.md` +- [ ] T029 [US2] Extend `k8s/migration/pkg/utils/credutils.go` to map Keystone error responses to specific Condition Reasons: `CredentialInvalidOrRevoked` (401), `InsufficientRoles` (403 + parse missing role names from response body), `KeystoneUnreachable` (network), `TLSVerificationFailed` (TLS cert errors) +- [ ] T030 [US2] Update `k8s/migration/internal/controller/openstackcreds_controller.go` to populate `Expiring`/`Expired`/`RolesSufficient` Conditions during each reconcile based on the new helpers from T028/T029; rely on the periodic 1-hour requeue from T021 for time-based transitions (Expiring → Expired) +- [ ] T031 [US2] Run `cd k8s/migration && make test`; verify all tests pass +- [ ] T032 [US2] Update `docs/credentials.md` (created in T023) with the "Application Credentials (recommended)" section including the operator runbook: App Cred create command, **explicit enumeration of the minimum role set vjailbreak requires on the destination project (`member` plus the `vjailbreak-migrator` role covering Cinder scheduler-stats and Nova hypervisor read)**, rotation workflow, revocation step. Reference `quickstart.md` for the end-to-end operator flow. + +**Checkpoint (PR #2 ready)**: User Story 2 is functional and testable. PR #2 can be pushed and opened against `main` after PR #1 has merged. + +--- + +## Phase 5: User Story 3 — Enter clouds.yaml through the web UI (Priority: P3) + +**PR**: #3 (branch `feature/`, opened after PR #1 merges; can be developed in parallel with PR #2) + +**Goal**: The credential creation form in the web UI accepts `clouds.yaml` content (paste or upload), parses it client-side, populates a cloud-name selector, shows an auth-method indicator, and submits the new credential via the new CRD schema. The legacy per-field form remains available as a secondary tab. + +**Independent Test**: Open the credential creation form, paste a valid `clouds.yaml` with two cloud entries, select one via the dropdown, observe the "Application Credential" badge when applicable, submit, and verify the resulting Kubernetes Secret contains a `clouds.yaml` key and the `OpenstackCreds` resource has `cloudName` set. + +### Tests for User Story 3 (write first; must FAIL before implementation) + +- [ ] T033 [P] [US3] Write component tests for tab switching in `ui/src/components/credentials/OpenstackCredsForm.test.tsx`: default tab is clouds.yaml; legacy tab remains accessible; switching preserves entered content within each tab +- [ ] T034 [P] [US3] Write component tests for `CloudsYamlForm` parse behavior in `ui/src/components/credentials/CloudsYamlForm.test.tsx`: valid single-entry YAML → cloud-name dropdown shown but disabled; multi-entry → enabled with all entry keys; invalid YAML → inline parse error with line info +- [ ] T035 [P] [US3] Write component tests for auth-method indicator in `ui/src/components/credentials/CloudsYamlForm.test.tsx`: `auth_type: v3password` → "Password" badge; `auth_type: v3applicationcredential` → "Application Credential" badge; missing `auth_type` → default badge per gophercloud-utils interpretation +- [ ] T036 [P] [US3] Write component tests for secret masking in `ui/src/components/credentials/CloudsYamlForm.test.tsx`: after parse, `password` and `application_credential_secret` values are masked in the rendered preview (FR-015) +- [ ] T037 [US3] Confirm UI tests FAIL via the existing UI test runner (`cd ui && yarn test` or equivalent) + +### Implementation for User Story 3 + +- [ ] T038 [US3] Add `js-yaml` dependency in `ui/package.json` (skip if a YAML library is already bundled — verify first with `cd ui && yarn list js-yaml 2>/dev/null || cat package.json | grep -i yaml`) +- [ ] T039 [P] [US3] Implement `ui/src/components/credentials/CloudsYamlForm.tsx`: textarea + file upload, client-side YAML parse, cloud-name dropdown populated from parsed entries, parse error inline display, auth-method badge, secret masking +- [ ] T040 [US3] Refactor existing OpenStack credentials form into a tab container at `ui/src/components/credentials/OpenstackCredsForm.tsx`: default tab `CloudsYamlForm`, secondary tab `LegacyOpenStackForm` (existing form extracted to its own component if needed for cleaner test boundaries) +- [ ] T041 [US3] Wire form submission: on submit from CloudsYamlForm, build a Secret payload with `clouds.yaml` key set to the raw YAML and create an `OpenstackCreds` resource with `cloudName` matching the dropdown selection; on submit from LegacyOpenStackForm, preserve existing OS_*-keyed Secret creation behavior unchanged +- [ ] T042 [US3] Run `cd ui && yarn test`; verify all tests pass +- [ ] T043 [US3] Manually exercise the form in a development server (`cd ui && yarn dev` with `VITE_API_HOST` and `VITE_API_TOKEN` set) against a vjailbreak appliance built from `main` with PR #1 merged: paste clouds.yaml, submit, verify Secret + OpenstackCreds created correctly (constitution-level integration check; not automated) + +**Checkpoint (PR #3 ready)**: User Story 3 is functional and testable. PR #3 can be pushed and opened against `main`. + +--- + +## Phase 6: Polish & Cross-Cutting Concerns + +**Purpose**: Final consolidation across the three PRs. Most of these tasks happen on PR #1's branch before opening; some are per-PR housekeeping. + +- [ ] T044 [P] Validate the `quickstart.md` operator walkthrough end-to-end against the destination cloud (PR #1 + PR #2 merged): every command in steps 1-8 executes successfully; verify Conditions populate exactly as documented +- [ ] T045 [P] Confirm pre-commit hooks pass for each PR branch: `make setup-hooks` once, then ensure each commit triggers them without bypass +- [ ] T046 Confirm no `[NEEDS CLARIFICATION]` markers remain in any spec/plan/data-model document +- [ ] T047 Re-run the full test suite locally before each `gh pr push`: `cd k8s/migration && make test`, `make test-v2v-helper`, `cd ui && yarn test` +- [ ] T048 Confirm constitution Test-First (IV) sequence held for every implementation task: tests were written and observed failing before the corresponding implementation task started; no "back-fill" tests (constitution principle IV is NON-NEGOTIABLE) + +--- + +## Dependencies & Execution Order + +### Phase Dependencies + +- **Setup (Phase 1)**: No dependencies — start immediately on PR #1 branch. +- **Foundational (Phase 2)**: Depends on Setup. BLOCKS all user stories. Lives on PR #1 branch and ships in PR #1. +- **User Story 1 (Phase 3)**: Depends on Foundational. Lives on PR #1 branch. +- **User Story 2 (Phase 4)**: Depends on PR #1 merge. New branch off `main` after PR #1. +- **User Story 3 (Phase 5)**: Depends on PR #1 merge. New branch off `main` after PR #1. May proceed in parallel with PR #2. +- **Polish (Phase 6)**: Per-PR housekeeping; some tasks span across PR boundaries. + +### User Story Dependencies + +- **US1**: Independent (only depends on Setup + Foundational on its own branch). +- **US2**: Depends on PR #1 merged — needs the clouds.yaml parser and Conditions API in place. +- **US3**: Depends on PR #1 merged — needs the CRD schema with `cloudName` and the backend Secret-shape contract. +- **US2 ↔ US3**: Independent of each other; can land in either order or in parallel. + +### Within Each User Story (TDD discipline) + +- Tests MUST be written FIRST and observed FAILING before implementation (constitution IV NON-NEGOTIABLE; CLAUDE.md "ALWAYS write unit tests"). +- Within a single story: helpers/constants → service code → controller / form wiring → integration check. +- Story complete before opening its PR for review. + +### Parallel Opportunities + +- Setup tasks T003 and T004 in parallel (different go.mod files). +- US1 test tasks T009, T010, T011, T012, T013, T014 in parallel (all in different `_test.go` files). +- US1 implementation T016 and T017 in parallel (different files, no shared symbol writes). +- US2 test tasks T024, T025, T026 in parallel. +- US3 test tasks T033, T034, T035, T036 in parallel (all in `_test.tsx` files). +- Across stories: once PR #1 merges, US2 and US3 can be developed by different contributors in parallel. + +--- + +## Parallel Example: User Story 1 + +```bash +# Phase 3, after Phase 2 checkpoint, on PR #1's branch: +# Launch all unit-test scaffolding tasks in parallel (different test files): +Task: "Write unit tests for clouds.yaml parsing wrapper in k8s/migration/pkg/utils/clouds_yaml_test.go" +Task: "Write unit tests for Conditions helpers in k8s/migration/pkg/utils/conditions_test.go" +Task: "Write unit tests for credentials parser branching in k8s/migration/pkg/utils/credutils_test.go" +Task: "Write unit tests for MicroversionFloor in v2v-helper/pkg/utils/microversion_test.go" +Task: "Write reconciler tests in k8s/migration/internal/controller/openstackcreds_controller_test.go" +Task: "Write log-redaction tests in k8s/migration/pkg/utils/credutils_test.go" + +# After tests fail (T015), launch parallel implementation: +Task: "Implement Condition Type/Reason constants in k8s/migration/pkg/utils/conditions.go" +Task: "Implement MicroversionFloor in v2v-helper/pkg/utils/microversion.go" +``` + +--- + +## Implementation Strategy + +### MVP First (PR #1 — User Story 1 only) + +1. Complete Phase 1: Setup. +2. Complete Phase 2: Foundational (CRD schema changes). +3. Complete Phase 3: User Story 1 (clouds.yaml backend + Conditions + Secret watch + microversion floor). +4. **STOP and VALIDATE**: Run the full test suite, exercise quickstart.md steps 1-6 against a real cloud. Open PR #1. +5. Wait for review and merge. + +### Incremental Delivery + +1. PR #1 → backend foundation ready, operators can already use `clouds.yaml` via kubectl. Demo: a working multi-cloud migration without any UI involvement. +2. PR #2 → Application Credentials available. Demo: a revocable, role-scoped, expiring credential in production. +3. PR #3 → UI catches up. Demo: end-to-end operator flow without leaving the browser. + +Each PR delivers operator-visible value independently. + +### Parallel Team Strategy + +With multiple contributors after PR #1 merges: + +1. Single contributor: PR #1 alone (Setup + Foundational + US1). +2. After PR #1 merges: + - Contributor A: PR #2 (US2 — App Credentials) + - Contributor B: PR #3 (US3 — UI) +3. PR #2 and PR #3 reviewed and merged independently in any order. + +--- + +## Notes + +- **[P]** tasks = different files, no incomplete dependencies. Within the same `_test.go` file, tests are not [P] relative to each other. +- **[Story]** label maps tasks to PRs for traceability and review scope. +- Constitution principle IV (Test-First) is NON-NEGOTIABLE; T015, T027, and T037 are the explicit red-phase confirmation gates. +- Constitution principle III (Generated Code Protection) is NON-NEGOTIABLE; T007 and T008 regenerate; never hand-edit `zz_generated.deepcopy.go` or `deploy/installer.yaml`. +- The current spec branch is `1952-clouds-yaml-credentials` — created by `/speckit-git-feature` and where the spec / plan / research / tasks artifacts live. PR #1 opens from this branch. +- Per-PR branches for sub-issues (PR #2 → `1953-clouds-yaml-app-credentials`, PR #3 → `1954-ui-clouds-yaml-form`) follow the repo convention `-` (no `feature/` prefix; matches existing branches like `1889-maas-free-bm-provisioning`), branched off `main` after PR #1 merges. +- Commit boundaries should align with task boundaries or small task groups for clean review history. diff --git a/v2v-helper/openstack/openstackops.go b/v2v-helper/openstack/openstackops.go index 192a901e4..3ce995fee 100644 --- a/v2v-helper/openstack/openstackops.go +++ b/v2v-helper/openstack/openstackops.go @@ -11,6 +11,7 @@ import ( vjailbreakv1alpha1 "github.com/platform9/vjailbreak/k8s/migration/api/v1alpha1" "github.com/platform9/vjailbreak/pkg/common/constants" + "github.com/platform9/vjailbreak/pkg/common/microversion" "github.com/platform9/vjailbreak/v2v-helper/pkg/k8sutils" "github.com/platform9/vjailbreak/v2v-helper/pkg/utils" "github.com/platform9/vjailbreak/v2v-helper/vm" @@ -69,6 +70,19 @@ func authOptionsFromEnv() (gophercloud.AuthOptions, error) { return gophercloud.AuthOptions{}, fmt.Errorf("Missing environment variable OS_AUTH_URL") } + // Application Credentials (v3applicationcredential) carry their own scope; + // project name / domain are not required from env. Detect this path first. + appCredID := strings.TrimSpace(os.Getenv("OS_APPLICATION_CREDENTIAL_ID")) + appCredSecret := strings.TrimSpace(os.Getenv("OS_APPLICATION_CREDENTIAL_SECRET")) + if appCredID != "" && appCredSecret != "" { + return gophercloud.AuthOptions{ + IdentityEndpoint: authURL, + ApplicationCredentialID: appCredID, + ApplicationCredentialSecret: appCredSecret, + AllowReauth: true, + }, nil + } + tenantName := strings.TrimSpace(os.Getenv("OS_TENANT_NAME")) if tenantName == "" { tenantName = strings.TrimSpace(os.Getenv("OS_PROJECT_NAME")) @@ -108,7 +122,7 @@ func authOptionsFromEnv() (gophercloud.AuthOptions, error) { } if username == "" && userID == "" { - return gophercloud.AuthOptions{}, fmt.Errorf("Missing one of the following environment variables [OS_USERID, OS_USERNAME]") + return gophercloud.AuthOptions{}, fmt.Errorf("Missing one of the following environment variables [OS_USERID, OS_USERNAME, OS_APPLICATION_CREDENTIAL_ID]") } if password == "" { return gophercloud.AuthOptions{}, fmt.Errorf("Missing environment variable OS_PASSWORD") @@ -160,16 +174,19 @@ func validateOpenStack(ctx context.Context, insecure bool) (*utils.OpenStackClie if err != nil { return nil, fmt.Errorf("failed to create block storage client: %s", err) } + blockStorageClient.Microversion = microversion.Floor(os.Getenv("OS_VOLUME_API_VERSION"), "") computeClient, err := openstack.NewComputeV2(providerClient, endpoint) if err != nil { return nil, fmt.Errorf("failed to create compute client: %s", err) } + computeClient.Microversion = microversion.Floor(os.Getenv("OS_COMPUTE_API_VERSION"), "") networkingClient, err := openstack.NewNetworkV2(providerClient, endpoint) if err != nil { return nil, fmt.Errorf("failed to create networking client: %s", err) } + networkingClient.Microversion = microversion.Floor(os.Getenv("OS_NETWORK_API_VERSION"), "") return &utils.OpenStackClients{ BlockStorageClient: blockStorageClient, diff --git a/v2v-helper/pkg/utils/openstackopsutils.go b/v2v-helper/pkg/utils/openstackopsutils.go index 1c13b60ba..1dce28619 100644 --- a/v2v-helper/pkg/utils/openstackopsutils.go +++ b/v2v-helper/pkg/utils/openstackopsutils.go @@ -20,6 +20,7 @@ import ( "github.com/pkg/errors" vjailbreakv1alpha1 "github.com/platform9/vjailbreak/k8s/migration/api/v1alpha1" "github.com/platform9/vjailbreak/pkg/common/constants" + "github.com/platform9/vjailbreak/pkg/common/microversion" openstackpkg "github.com/platform9/vjailbreak/pkg/common/openstack" "github.com/platform9/vjailbreak/v2v-helper/pkg/k8sutils" "github.com/platform9/vjailbreak/v2v-helper/vm" @@ -303,7 +304,7 @@ func (osclient *OpenStackClients) AttachVolumeToVM(ctx context.Context, volumeID return fmt.Errorf("failed to get instance ID: %s", err) } PrintLog(fmt.Sprintf("OPENSTACK API: Attaching volume %s to VM %s, authurl %s, tenant %s", volumeID, instanceID, osclient.AuthURL, osclient.Tenant)) - osclient.ComputeClient.Microversion = "2.60" + osclient.ComputeClient.Microversion = microversion.Floor(os.Getenv("OS_COMPUTE_API_VERSION"), "2.60") vjailbreakSettings, err := k8sutils.GetVjailbreakSettings(ctx, osclient.K8sClient) if err != nil { @@ -937,7 +938,7 @@ func (osclient *OpenStackClients) CreateVM(ctx context.Context, flavor *flavors. // 400 ("'none' is not of type 'array'") because pre-2.37 the // networks field is schema-typed as an array. The RDM path below // bumps to "2.60" when needed; "2.37" is the floor for "none". - osclient.ComputeClient.Microversion = "2.37" + osclient.ComputeClient.Microversion = microversion.Floor(os.Getenv("OS_COMPUTE_API_VERSION"), "2.37") serverCreateOpts.Networks = "none" PrintLog(fmt.Sprintf( "VM %s has no network interfaces; creating server with networks='none' at compute microversion 2.37", @@ -1034,8 +1035,9 @@ func (osclient *OpenStackClients) CreateVM(ctx context.Context, flavor *flavors. } for _, disk := range vminfo.RDMDisks { - // Set the Nova API version to 2.6 - osclient.ComputeClient.Microversion = "2.60" + // Set the Nova API version to 2.60 (multi-attach support), honoring the + // operator-configured floor if higher. + osclient.ComputeClient.Microversion = microversion.Floor(os.Getenv("OS_COMPUTE_API_VERSION"), "2.60") blockDevice := servers.BlockDevice{ DeleteOnTermination: false, DestinationType: servers.DestinationVolume,