-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from yunify/daemon_process
Add Daemon process
- Loading branch information
Showing
3,090 changed files
with
1,703,104 additions
and
54,116 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// | ||
// ========================================================================= | ||
// Copyright (C) 2017 by Yunify, Inc... | ||
// ------------------------------------------------------------------------- | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this work except in compliance with the License. | ||
// You may obtain a copy of the License in the LICENSE file, or 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 cmd | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
"github.com/spf13/viper" | ||
"io/ioutil" | ||
"net/http" | ||
log "github.com/sirupsen/logrus" | ||
) | ||
|
||
// cleanCmd represents the clean command | ||
var cleanCmd = &cobra.Command{ | ||
Use: "clean", | ||
Short: "Clean up nic cache", | ||
Long: `hostnic-cni is a Container Network Interface plugin. | ||
This plugin will create a new nic by IaaS api and attach to host, | ||
then move the nic to container network namespace`, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
resp, err := http.Get("http://"+viper.GetString("manageAddr")+"/clearcache") | ||
if err != nil { | ||
log.Error(err) | ||
return | ||
} | ||
defer resp.Body.Close() | ||
body, err := ioutil.ReadAll(resp.Body) | ||
log.Info(string(body)) | ||
}, | ||
} | ||
|
||
func init() { | ||
RootCmd.AddCommand(cleanCmd) | ||
|
||
// Here you will define your flags and configuration settings. | ||
|
||
// Cobra supports Persistent Flags which will work for this command | ||
// and all subcommands, e.g.: | ||
// cleanCmd.PersistentFlags().String("foo", "", "A help for foo") | ||
|
||
// Cobra supports local flags which will only run when this command | ||
// is called directly, e.g.: | ||
// cleanCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") | ||
} |
Oops, something went wrong.