Go to the SSH and GPG keys section and select the New SSH key button:
Provide the new key name, paste the previously copied SSH key, and confirm changes by selecting the Add SSH Key button:
Now that Flux is authenticated to pull changes from your Git repository, you can start creating CRs from your local workspace files.
In this section, you will create a sample inline Function.
Back in the terminal, clone this GitHub repository to your current workspace location:
git clone https://github.com/${GH_USER}/${GH_REPO}.git
NOTE: You can also clone the repository using SSH. To do that, you need to generate a new SSH key and add it to the ssh-agent.
Go to the repository folder:
cd ${GH_REPO}
If the folder you specified during the Flux configuration does not exist yet in the Git repository, create it:
mkdir ${GH_FOLDER}
Run the apply
Kyma CLI command to create a Function CR in the YAML format in your remote GitHub repository. This command will generate the output in the my-function.yaml
file.
kyma apply function --filename {FULL_PATH_TO_LOCAL_WORKSPACE_FOLDER}/config.yaml --output yaml --dry-run > ./${GH_FOLDER}/my-function.yaml
Push the local changes to the remote repository:
git add . # Stage changes for the commitgit commit -m 'Add my-function' # Add a commit messagegit push origin main # Push changes to the "main" branch of your Git repository. If you have a repository with the "main" branch, use this command instead: git push origin main
Go to the GitHub repository to check that the changes were pushed.
By default, Flux pulls CRs from the Git repository and pushes them to the cluster in 5-minute intervals. To enforce immediate synchronization, run this command from the terminal:
fluxctl sync --k8s-fwd-ns flux
Make sure that the Function CR was applied by Flux to the cluster:
kubectl get functions
You can see that Flux synchronized the resource and the new Function CR was added to your cluster.
Once you set it up, Flux will keep monitoring the given Git repository folder for any changes. If you modify the existing resources directly on the cluster, Flux will automatically revert these changes and update the given resource back to its version on the main
branch of the Git repository.