Skip to content

Commit

Permalink
Update several details and README
Browse files Browse the repository at this point in the history
  • Loading branch information
achetronic committed Sep 14, 2022
1 parent 6a7ae13 commit 973aa55
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Compile into binaries

on:
release:
types: [created]
Expand Down Expand Up @@ -25,4 +27,4 @@ jobs:
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.18.6.linux-amd64.tar.gz"
project_path: "."
binary_name: "rodillo"
binary_name: "nsmurder"
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Rodillo
# Nsmurder

## Description

A CLI to smash Kubernetes namespaces following different strategies sequentially
A CLI to assassinate Kubernetes namespaces following different strategies without mercy

## Motivation

Expand Down Expand Up @@ -77,8 +77,13 @@ nsmurder --include "app-develop,app-staging,app-production" \
## How to collaborate

We are open to external collaborations for this project: improvements, bugfixes, whatever.
For doing it, open an issue to discuss the need of the changes, then fork the repository,
make your changes to the code and open a PR.

For doing it, open an issue to discuss the need of the changes, then:

- Fork the repository
- Make your changes to the code
- Open a PR and wait for review

The code will be reviewed and tested (always)

> We are developers and hate bad code. For that reason we ask you the highest quality
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module rodillo
module nsmurder

go 1.18

Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"time"

"rodillo/flags" // Configuration flags for the CLI
"rodillo/kubernetes" // Requests against Kubernetes API
"rodillo/manager" // Requests against Kubernetes API
"nsmurder/flags" // Configuration flags for the CLI
"nsmurder/kubernetes" // Requests against Kubernetes API
"nsmurder/manager" // Requests against Kubernetes API
)

const (
Expand Down
4 changes: 2 additions & 2 deletions manager/manager_funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"k8s.io/client-go/dynamic"
"k8s.io/utils/strings/slices"
"log"
"rodillo/flags"
"rodillo/kubernetes"
"nsmurder/flags"
"nsmurder/kubernetes"
)

const (
Expand Down

0 comments on commit 973aa55

Please sign in to comment.