GithubHelp home page GithubHelp logo

gitrepocount's Introduction

OpenFaaS gitrepocount

This repo contains an OpenFaaS function which uses the google/go-github Go library for the GitHub API to count how many repos an individual or group has. This uses pagination to continue counting.

Deploying the Function

Make sure you have deployed an OpenFaaS stack to your cluster using the instructions on the OpenFaaS repo.

Use the CLI (faas-cli)

Get the CLI

The faas-cli can be installed via brew install faas-cli or curl -sSL https://cli.openfaas.com | sudo sh.

Create the Kubernetes Secret

The GitHub API limits unauthorized requests by rate limiting. Use your GitHub API Personal Access Token to get 5000 requests per hour. Go to your GitHub Settings -> Developer Settings -> Personal Access Tokens and "Generate new token". Only "Public" needs to be selected

Create a secret using the command line.

VALUE=password
kubectl create secret generic -n openfaas-fn github-api-secret --from-literal github-api-secret=$VALUE

With your new token, get the base64 encoded version with

echo -n '<insert token here>' | base64

Create a new secret file called github-api-secret.yaml

apiVersion: v1
kind: Secret
metadata:
  name: github-api-secret
  namespace: openfaas-fn
type: Opaque
data:
  github-api-secret: <base64 encoded secret>

Create the Kubernetes Secret:

kubectl create -f github-api-secret.yaml

Deploy the function

Now deploy the function as follows:

# git clone https://github.com/kacole2/gitrepocount
# cd gitrepocount
// make any changes to the gitrepocount.yml file for OpenFaaS API gateway or if the secret has been renamed
# faas-cli deploy
200 OK
URL: http://localhost:31112/function/gitrepocount

Testing the Function

Now that the function is running in your OpenFaaS environment you can test it from the command line by running:

$ curl localhost:31112/function/gitrepocount -d "kacole2"
$ {"user":"kacole2","repocount":58}

License

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.