Create a Git Function
This tutorial shows how you can build a Function from code and dependencies stored in a Git repository, which is an alternative way to keeping the code in the Function CR. The tutorial is based on the Function from the orders service
example. It describes steps required to fetch the Function's source code and dependencies from a public Git repository that does not need any authentication method. However, it also provides additional guidance on how to secure it if you are using a private repository.
NOTE: To learn more about Git repository sources for Functions and different ways of securing your repository, read about the Git source type.
NOTE: Read about Istio sidecars in Kyma and why you want them. Then, check how to enable automatic Istio sidecar proxy injection. For more details, see Default Istio setup in Kyma.
Steps
Follow these steps:
- kubectl
- Kyma Dashboard
Export these variables:
Click to copyexport GIT_FUNCTION={GIT_FUNCTION_NAME}export NAMESPACE={FUNCTION_NAMESPACE}Create a Secret (optional).
If you use a secured repository, you must first create a Secret for one of these authentication methods:
- Basic authentication (username and password or token) to this repository in the same Namespace as the Function:
Click to copycat <<EOF | kubectl apply -f -apiVersion: v1kind: Secretmetadata:name: git-creds-basicnamespace: $NAMESPACEtype: Opaquedata:username: {BASE64_ENCODED_USERNAME}password: {BASE64_ENCODED_PASSWORD_OR_TOKEN}EOF- SSH key:
Click to copycat <<EOF | kubectl apply -f -apiVersion: v1kind: Secretmetadata:name: git-creds-keynamespace: $NAMESPACEtype: Opaquedata:key: {BASE64_ENCODED_PRIVATE_SSH_KEY}EOFNOTE: Read more about the supported authentication methods.
Create a GitRepository CR that specifies the Git repository metadata:
Click to copycat <<EOF | kubectl apply -f -apiVersion: serverless.kyma-project.io/v1alpha1kind: GitRepositorymetadata:name: $GIT_FUNCTIONnamespace: $NAMESPACEspec:url: "https://github.com/kyma-project/examples.git"EOFNOTE: If you use a secured repository, add the auth object with the adequate type and secretName fields to the spec:
Click to copyspec:...auth:type: # "basic" or "key"secretName: # "git-creds-basic" or "git-creds-key"NOTE: To avoid performance degradation caused by large Git repositories and large monorepos, Function Controller implements a configurable backoff period for the source checkout based on
APP_FUNCTION_REQUEUE_DURATION
. This behavior can be disabled, allowing the controller to perform the source checkout with every reconciliation loop by marking the Function CR with the annotationserverless.kyma-project.io/continuousGitCheckout: true
Create a Function CR that specifies the Function's logic and points to the directory with code and dependencies in the given repository.
Click to copycat <<EOF | kubectl apply -f -apiVersion: serverless.kyma-project.io/v1alpha1kind: Functionmetadata:name: $GIT_FUNCTIONnamespace: $NAMESPACEspec:type: gitruntime: nodejs14source: $GIT_FUNCTIONreference: mainbaseDir: orders-service/functionEOFNOTE: See this Function's code and dependencies.
Check if your Function was created and all conditions are set to
True
:Click to copykubectl get functions $GIT_FUNCTION -n $NAMESPACEYou should get a result similar to this example:
Click to copyNAME CONFIGURED BUILT RUNNING RUNTIME VERSION AGEtest-function True True True nodejs14 1 96s