blob: 69e90c6c191ca4c57804b9a2c1b807f05b61293f [file] [log] [blame]
/*
* Copyright 2021-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.kubevirtnetworking.cli;
import org.apache.karaf.shell.api.action.Command;
import org.apache.karaf.shell.api.action.lifecycle.Service;
import org.onosproject.cli.AbstractShellCommand;
import org.onosproject.kubevirtnode.api.KubevirtNode;
import org.onosproject.kubevirtnode.api.KubevirtNodeAdminService;
import static org.onosproject.kubevirtnetworking.util.KubevirtNetworkingUtil.waitFor;
import static org.onosproject.kubevirtnode.api.KubevirtNodeState.COMPLETE;
import static org.onosproject.kubevirtnode.api.KubevirtNodeState.INIT;
/**
* Re-installs flow rules for KubeVirt networking.
*/
@Service
@Command(scope = "onos", name = "kubevirt-sync-rules",
description = "Re-installs flow rules for KubeVirt networking")
public class KubevirtSyncRulesCommand extends AbstractShellCommand {
private static final int SLEEP_S = 1; // we re-check the status on every 1s
private static final long TIMEOUT_MS = 15000;
private static final String SUCCESS_MSG = "Successfully synchronize flow rules for node %s!";
private static final String FAIL_MSG = "Failed to synchronize flow rules for node %s.";
@Override
protected void doExecute() throws Exception {
// All handlers in this application reacts the node complete event and
// tries to re-configure flow rules for the complete node.
KubevirtNodeAdminService nodeAdminService = get(KubevirtNodeAdminService.class);
if (nodeAdminService == null) {
error("Failed to re-install flow rules for kubevirt networking.");
return;
}
nodeAdminService.completeNodes().forEach(node ->
syncRulesBaseForNode(nodeAdminService, node));
print("Done all flow rules synchronization, but some nodes may have issues.");
}
private void syncRulesBaseForNode(KubevirtNodeAdminService service, KubevirtNode node) {
KubevirtNode updated = node.updateState(INIT);
service.updateNode(updated);
boolean result = true;
long timeoutExpiredMs = System.currentTimeMillis() + TIMEOUT_MS;
while (service.node(node.hostname()).state() != COMPLETE) {
long waitMs = timeoutExpiredMs - System.currentTimeMillis();
waitFor(SLEEP_S);
if (waitMs <= 0) {
result = false;
break;
}
}
if (result) {
print(SUCCESS_MSG, node.hostname());
} else {
error(FAIL_MSG, node.hostname());
}
}
}