1
0
mirror of synced 2026-02-06 19:05:55 +00:00

Rename sync cmd to reconcile

This commit is contained in:
stefanprodan
2020-07-14 11:45:15 +03:00
parent bf67577073
commit 394227571f
15 changed files with 91 additions and 139 deletions

View File

@@ -42,7 +42,7 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way.
--health-check-timeout=2m
# Trigger a git sync of the Kustomization's source and apply changes
tk sync kustomization webapp-dev --with-source
tk reconcile kustomization webapp-dev --with-source
# Suspend a Kustomization reconciliation
tk suspend kustomization webapp-dev
@@ -84,8 +84,8 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way.
* [tk export](tk_export.md) - Export resources in YAML format
* [tk get](tk_get.md) - Get sources and resources
* [tk install](tk_install.md) - Install the toolkit components
* [tk reconcile](tk_reconcile.md) - Reconcile sources and resources
* [tk resume](tk_resume.md) - Resume suspended resources
* [tk suspend](tk_suspend.md) - Suspend resources
* [tk sync](tk_sync.md) - Synchronize sources and resources
* [tk uninstall](tk_uninstall.md) - Uninstall the toolkit components

View File

@@ -1,15 +1,15 @@
## tk sync
## tk reconcile
Synchronize sources and resources
Reconcile sources and resources
### Synopsis
The sync sub-commands trigger a reconciliation of sources and resources.
The reconcile sub-commands trigger a reconciliation of sources and resources.
### Options
```
-h, --help help for sync
-h, --help help for reconcile
```
### Options inherited from parent commands
@@ -24,6 +24,6 @@ The sync sub-commands trigger a reconciliation of sources and resources.
### SEE ALSO
* [tk](tk.md) - Command line utility for assembling Kubernetes CD pipelines
* [tk sync kustomization](tk_sync_kustomization.md) - Synchronize a Kustomization resource
* [tk sync source](tk_sync_source.md) - Synchronize sources
* [tk reconcile kustomization](tk_reconcile_kustomization.md) - Reconcile a Kustomization resource
* [tk reconcile source](tk_reconcile_source.md) - Reconcile sources

View File

@@ -1,24 +1,24 @@
## tk sync kustomization
## tk reconcile kustomization
Synchronize a Kustomization resource
Reconcile a Kustomization resource
### Synopsis
The sync kustomization command triggers a reconciliation of a Kustomization resource and waits for it to finish.
The reconcile kustomization command triggers a reconciliation of a Kustomization resource and waits for it to finish.
```
tk sync kustomization [name] [flags]
tk reconcile kustomization [name] [flags]
```
### Examples
```
# Trigger a Kustomization apply outside of the reconciliation interval
sync kustomization podinfo
tk reconcile kustomization podinfo
# Trigger a sync of the Kustomization's source and apply changes
sync kustomization podinfo --with-source
tk reconcile kustomization podinfo --with-source
```
@@ -26,7 +26,7 @@ tk sync kustomization [name] [flags]
```
-h, --help help for kustomization
--with-source synchronize kustomization source
--with-source reconcile kustomization source
```
### Options inherited from parent commands
@@ -40,5 +40,5 @@ tk sync kustomization [name] [flags]
### SEE ALSO
* [tk sync](tk_sync.md) - Synchronize sources and resources
* [tk reconcile](tk_reconcile.md) - Reconcile sources and resources

View File

@@ -1,10 +1,10 @@
## tk sync source
## tk reconcile source
Synchronize sources
Reconcile sources
### Synopsis
The sync source sub-commands trigger a reconciliation of sources.
The reconcile source sub-commands trigger a reconciliation of sources.
### Options
@@ -23,6 +23,6 @@ The sync source sub-commands trigger a reconciliation of sources.
### SEE ALSO
* [tk sync](tk_sync.md) - Synchronize sources and resources
* [tk sync source git](tk_sync_source_git.md) - Synchronize a GitRepository source
* [tk reconcile](tk_reconcile.md) - Reconcile sources and resources
* [tk reconcile source git](tk_reconcile_source_git.md) - Reconcile a GitRepository source

View File

@@ -1,20 +1,20 @@
## tk sync source git
## tk reconcile source git
Synchronize a GitRepository source
Reconcile a GitRepository source
### Synopsis
The sync source command triggers a reconciliation of a GitRepository resource and waits for it to finish.
The reconcile source command triggers a reconciliation of a GitRepository resource and waits for it to finish.
```
tk sync source git [name] [flags]
tk reconcile source git [name] [flags]
```
### Examples
```
# Trigger a git pull for an existing source
sync source git podinfo
tk reconcile source git podinfo
```
@@ -35,5 +35,5 @@ tk sync source git [name] [flags]
### SEE ALSO
* [tk sync source](tk_sync_source.md) - Synchronize sources
* [tk reconcile source](tk_reconcile_source.md) - Reconcile sources