Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: https=false otherwise https was not disabled.
Browse files Browse the repository at this point in the history
030 committed Dec 2, 2023
1 parent 062cac9 commit 620faa4
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmd/n3dr/configUser.go
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ var configUserCmd = &cobra.Command{
Examples:
# Change the admin password:
n3dr configUser --changePass --https false --n3drUser admin --n3drURL nexus3:8081 --n3drPass initial-pass --pass some-pass --email [email protected] --firstName admin --id admin --lastName admin
n3dr configUser --changePass --https=false --n3drUser admin --n3drURL nexus3:8081 --n3drPass initial-pass --pass some-pass --email [email protected] --firstName admin --id admin --lastName admin
`,
Run: func(cmd *cobra.Command, args []string) {
if !admin && !downloadUser && !uploadUser && !changePass {
2 changes: 1 addition & 1 deletion configs/k8s/nexus3.yaml
Original file line number Diff line number Diff line change
@@ -126,7 +126,7 @@ spec:
pw=$(cat /tmp/nexus-data/admin.password)
n3dr configUser \
--changePass \
--https false \
--https=false \
--n3drUser admin \
--n3drURL nexus3:8081 \
--n3drPass "${pw}" \
14 changes: 9 additions & 5 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,16 +2,19 @@
## [Unreleased]


<a name="7.3.3"></a>
## [7.3.3] - 2023-12-02
### Fix
- https=false otherwise https was not disabled.


<a name="7.3.2"></a>
## [7.3.2] - 2023-12-02
### Build
- **deps:** bump golang.org/x/net from 0.15.0 to 0.17.0

### Feat
- Determine what images are running in a k8s cluster.

### Fix
- [[#384](https://github.com/030/n3dr/issues/384)] Create groups.
- [[#384](https://github.com/030/n3dr/issues/384)] Create groups. ([#386](https://github.com/030/n3dr/issues/386))


<a name="7.3.1"></a>
@@ -406,7 +409,8 @@ The `backup`, `upload` and `repositories` commands have been removed.
<a name="1.0.0"></a>
## 1.0.0 - 2019-05-12

[Unreleased]: https://github.com/030/n3dr/compare/7.3.2...HEAD
[Unreleased]: https://github.com/030/n3dr/compare/7.3.3...HEAD
[7.3.3]: https://github.com/030/n3dr/compare/7.3.2...7.3.3
[7.3.2]: https://github.com/030/n3dr/compare/7.3.1...7.3.2
[7.3.1]: https://github.com/030/n3dr/compare/7.3.0...7.3.1
[7.3.0]: https://github.com/030/n3dr/compare/7.2.5...7.3.0

0 comments on commit 620faa4

Please sign in to comment.