-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Config Sync Usage Examples #5
Comments
@mortent Hi, would you give me some suggestion ? |
ping @justinsb Hello |
@oeular Thanks for trying out Config Sync. We are aware that the documentation is very sparse at the moment and we do plan to improve it. You can look at https://github.com/janetkuo/csmr-examples for some good examples for using Config Sync. When using the OSS version of Config Sync you can ignore any mention of the |
@mortent Thanks for your tips. Can the Config Sync work on the alone Kubernetes ? I want to try it on the alone kubernetes. |
@oeular yes Config Sync should work on Kubernetes clusters, including KinD. |
Most of the examples we've invested in so far have been for Anthos Config Management in https://github.com/GoogleCloudPlatform/anthos-config-management-samples, but ACM is a higher level abstraction which includes Policy Controller, Config Sync, and an ACM Operator to manage them. Some of the examples in the samples repo work with CS by itself, but some require the rest of ACM. I would consider this a feature request for a set of Config Sync specific examples, perhaps in an /examples/ or /demos/ dir in this repo, like we've done for kpt and cli-utils. |
@janetkuo @karlkfi Thanks. Actually, I want to install Config Sync as an addon in Kubevela(https://github.com/kubevela/kubevela) for some component. |
(I'm piggy-backing on this existing issue instead of filing a new one; if you'd prefer I can file a separate one.) Is there any docs or an example somewhere of how to use cluster selectors with the OSS manifests? After running |
—cluster-name is configured on the reconciler-manager, which in turn configures it on the reconciler containers with an env var: https://github.com/GoogleContainerTools/kpt-config-sync/blob/main/cmd/reconciler-manager/main.go#L42 |
Here is my way to install kpt-config-sync,
Create a directory to store the manifest bundle
mkdir -p <MANIFEST_DIR>
Extract the manifest bundle
tar -xzf <MANIFEST_BUNDLE> -C <MANIFEST_DIR>
Apply the manifests to your cluster
kubectl apply -f <MANIFEST_DIR>
BUT Are There any efficient and easy example to verify the kpt-config-syn ?
I need some tips. Thank you !
The text was updated successfully, but these errors were encountered: